|
|
@ -370,6 +370,10 @@ export default { |
|
|
|
icResiUserId: { |
|
|
|
type: String, |
|
|
|
default: '' |
|
|
|
}, |
|
|
|
selGridId: { |
|
|
|
type: String, |
|
|
|
default: '' |
|
|
|
} |
|
|
|
}, |
|
|
|
|
|
|
@ -469,7 +473,7 @@ export default { |
|
|
|
} else { |
|
|
|
this.getInfo(); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
this.pageLoading = true; |
|
|
@ -799,14 +803,16 @@ export default { |
|
|
|
} else { |
|
|
|
console.log("获取查询详情成功", res.data); |
|
|
|
this.demandUserList = res.data; |
|
|
|
// debugger |
|
|
|
if(this.icResiUserId && this.formType==='add') { |
|
|
|
this.demandUserList.forEach((item) => { |
|
|
|
|
|
|
|
|
|
|
|
if (this.icResiUserId && this.formType === 'add') { |
|
|
|
this.demandUserList.forEach((item) => { |
|
|
|
|
|
|
|
if (item.demandUserId == this.icResiUserId) |
|
|
|
this.selectDemandUser = item.label; |
|
|
|
}); |
|
|
|
this.form.demandUserId = this.icResiUserId |
|
|
|
|
|
|
|
this.form.gridId = this.selGridId |
|
|
|
} |
|
|
|
} |
|
|
|
}) |
|
|
|