v1.9 优化客户周反馈bug

This commit is contained in:
wuxw 2025-09-28 09:18:47 +08:00
parent 1f106db540
commit 946eab9514
7 changed files with 20 additions and 9 deletions

View File

@ -16,9 +16,16 @@ export function listMachineTranslates(params) {
}
export function queryOwnerCars(params) {
return request({
url: '/owner.queryOwnerCars',
method: 'get',
params
return new Promise((resolve, reject) => {
request({
url: '/owner.queryOwnerCars',
method: 'get',
params
}).then(response => {
const res = response.data
resolve(res)
}).catch(error => {
reject(error)
})
})
}

View File

@ -84,7 +84,7 @@ export default {
page,
row,
communityId: this.communityId,
roomNum: this.simplifyMeterWaterFeeInfo.roomName,
objId: this.simplifyMeterWaterFeeInfo.roomId,
meterType: this.simplifyMeterWaterFeeInfo.meterType
}

View File

@ -160,7 +160,7 @@ export default {
},
_addOwnerCar() {
this.$router.push({
path: '/pages/property/hireParkingSpace',
path: '/views/car/hireParkingSpace',
query: {
ownerId: this.ownerDetailCarInfo.ownerId,
ownerName: this.ownerDetailCarInfo.ownerName

View File

@ -83,6 +83,7 @@ export default {
const params = {
communityId: getCommunityId(),
memberId: this.ownerDetailComplaintInfo.ownerId,
tel: this.ownerDetailComplaintInfo.link,
page: page,
row: row
}

View File

@ -83,6 +83,7 @@ export default {
})
},
async listMachineTranslates() {
if(!this.simplifyOwnerTransactionCarInfo.carId) return
try {
const params = {
page: this.currentPage,

View File

@ -459,6 +459,7 @@ export default {
Object.assign(this.simplifyAcceptanceInfo, _owner)
this.simplifyAcceptanceInfo.ownerRemark = _owner.remark
this.simplifyAcceptanceInfo.ownerPhoto = _owner.faceUrl
this.simplifyAcceptanceInfo.ownerName = _owner.name
if (!Object.prototype.hasOwnProperty.call(_owner, 'rooms')) {
return
@ -531,7 +532,8 @@ export default {
ownerId: this.simplifyAcceptanceInfo.ownerId,
ownerName: this.simplifyAcceptanceInfo.ownerName,
roomId: this.simplifyAcceptanceInfo.roomId,
roomName: this.simplifyAcceptanceInfo.roomName
roomName: this.simplifyAcceptanceInfo.roomName,
objId: this.simplifyAcceptanceInfo.roomId
})
}
}, 1000);

View File

@ -44,8 +44,8 @@ export default {
logo: '',
companyName:'',
loginForm: {
username: '',
passwd: '',
username: 'wuxw',
passwd: 'admin',
validateCode: ''
},
captchaUrl: '',