diff --git a/sgzb-ui/src/views/claimAndRefund/return/returnApplyAdd.vue b/sgzb-ui/src/views/claimAndRefund/return/returnApplyAdd.vue index c54d2bd2..78407553 100644 --- a/sgzb-ui/src/views/claimAndRefund/return/returnApplyAdd.vue +++ b/sgzb-ui/src/views/claimAndRefund/return/returnApplyAdd.vue @@ -490,7 +490,7 @@ export default { // 获取 任务详情数据 async getViewByApply(Id) { const res = await getViewByApply({ id:Id }) - const data = res.rows[0] + const data = res.data.rows[0] this.queryParams.unitId = data.unitId this.queryParams.proId = data.projectId this.queryParams.leaseApplyInfo.phone = data.leaseApplyInfo.phone @@ -498,7 +498,7 @@ export default { this.queryParams.agreementCode = data.agreementCode this.queryParams.leaseApplyInfo.remark = data.leaseApplyInfo.remark - this.leaseApplyDetails = data.leaseApplyDetails.map(item => { + this.leaseApplyDetails = res.rows.map(item => { return this.handelEchoData(item) })