mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-02-24 05:46:03 +08:00
v1.9 优化客户周反馈bug
This commit is contained in:
parent
1f106db540
commit
946eab9514
@ -16,9 +16,16 @@ export function listMachineTranslates(params) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export function queryOwnerCars(params) {
|
export function queryOwnerCars(params) {
|
||||||
return request({
|
return new Promise((resolve, reject) => {
|
||||||
url: '/owner.queryOwnerCars',
|
request({
|
||||||
method: 'get',
|
url: '/owner.queryOwnerCars',
|
||||||
params
|
method: 'get',
|
||||||
|
params
|
||||||
|
}).then(response => {
|
||||||
|
const res = response.data
|
||||||
|
resolve(res)
|
||||||
|
}).catch(error => {
|
||||||
|
reject(error)
|
||||||
|
})
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
@ -84,7 +84,7 @@ export default {
|
|||||||
page,
|
page,
|
||||||
row,
|
row,
|
||||||
communityId: this.communityId,
|
communityId: this.communityId,
|
||||||
roomNum: this.simplifyMeterWaterFeeInfo.roomName,
|
objId: this.simplifyMeterWaterFeeInfo.roomId,
|
||||||
meterType: this.simplifyMeterWaterFeeInfo.meterType
|
meterType: this.simplifyMeterWaterFeeInfo.meterType
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -160,7 +160,7 @@ export default {
|
|||||||
},
|
},
|
||||||
_addOwnerCar() {
|
_addOwnerCar() {
|
||||||
this.$router.push({
|
this.$router.push({
|
||||||
path: '/pages/property/hireParkingSpace',
|
path: '/views/car/hireParkingSpace',
|
||||||
query: {
|
query: {
|
||||||
ownerId: this.ownerDetailCarInfo.ownerId,
|
ownerId: this.ownerDetailCarInfo.ownerId,
|
||||||
ownerName: this.ownerDetailCarInfo.ownerName
|
ownerName: this.ownerDetailCarInfo.ownerName
|
||||||
|
|||||||
@ -83,6 +83,7 @@ export default {
|
|||||||
const params = {
|
const params = {
|
||||||
communityId: getCommunityId(),
|
communityId: getCommunityId(),
|
||||||
memberId: this.ownerDetailComplaintInfo.ownerId,
|
memberId: this.ownerDetailComplaintInfo.ownerId,
|
||||||
|
tel: this.ownerDetailComplaintInfo.link,
|
||||||
page: page,
|
page: page,
|
||||||
row: row
|
row: row
|
||||||
}
|
}
|
||||||
|
|||||||
@ -83,6 +83,7 @@ export default {
|
|||||||
})
|
})
|
||||||
},
|
},
|
||||||
async listMachineTranslates() {
|
async listMachineTranslates() {
|
||||||
|
if(!this.simplifyOwnerTransactionCarInfo.carId) return
|
||||||
try {
|
try {
|
||||||
const params = {
|
const params = {
|
||||||
page: this.currentPage,
|
page: this.currentPage,
|
||||||
|
|||||||
@ -459,6 +459,7 @@ export default {
|
|||||||
Object.assign(this.simplifyAcceptanceInfo, _owner)
|
Object.assign(this.simplifyAcceptanceInfo, _owner)
|
||||||
this.simplifyAcceptanceInfo.ownerRemark = _owner.remark
|
this.simplifyAcceptanceInfo.ownerRemark = _owner.remark
|
||||||
this.simplifyAcceptanceInfo.ownerPhoto = _owner.faceUrl
|
this.simplifyAcceptanceInfo.ownerPhoto = _owner.faceUrl
|
||||||
|
this.simplifyAcceptanceInfo.ownerName = _owner.name
|
||||||
|
|
||||||
if (!Object.prototype.hasOwnProperty.call(_owner, 'rooms')) {
|
if (!Object.prototype.hasOwnProperty.call(_owner, 'rooms')) {
|
||||||
return
|
return
|
||||||
@ -531,7 +532,8 @@ export default {
|
|||||||
ownerId: this.simplifyAcceptanceInfo.ownerId,
|
ownerId: this.simplifyAcceptanceInfo.ownerId,
|
||||||
ownerName: this.simplifyAcceptanceInfo.ownerName,
|
ownerName: this.simplifyAcceptanceInfo.ownerName,
|
||||||
roomId: this.simplifyAcceptanceInfo.roomId,
|
roomId: this.simplifyAcceptanceInfo.roomId,
|
||||||
roomName: this.simplifyAcceptanceInfo.roomName
|
roomName: this.simplifyAcceptanceInfo.roomName,
|
||||||
|
objId: this.simplifyAcceptanceInfo.roomId
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}, 1000);
|
}, 1000);
|
||||||
|
|||||||
@ -44,8 +44,8 @@ export default {
|
|||||||
logo: '',
|
logo: '',
|
||||||
companyName:'',
|
companyName:'',
|
||||||
loginForm: {
|
loginForm: {
|
||||||
username: '',
|
username: 'wuxw',
|
||||||
passwd: '',
|
passwd: 'admin',
|
||||||
validateCode: ''
|
validateCode: ''
|
||||||
},
|
},
|
||||||
captchaUrl: '',
|
captchaUrl: '',
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user