|
|
|
@ -1043,10 +1043,6 @@ export default { |
|
|
|
economyDto: { |
|
|
|
monthIncome: null, //月收入 |
|
|
|
}, |
|
|
|
subsistenceAllowanceDto: { |
|
|
|
reasons: null, |
|
|
|
category: [], |
|
|
|
}, |
|
|
|
}, |
|
|
|
orgOption:[], |
|
|
|
footerInputList: [ |
|
|
|
@ -1469,7 +1465,7 @@ export default { |
|
|
|
{ |
|
|
|
label: "子女死亡日期", |
|
|
|
itemType: "datepicker1", |
|
|
|
formName: "certificateDate", |
|
|
|
formName: "childDeathDate", |
|
|
|
pformName: "specialSupportDto", |
|
|
|
opction: [], |
|
|
|
}, |
|
|
|
@ -1630,7 +1626,6 @@ export default { |
|
|
|
this.getOrgTreeList(this.form.resideInfoDtos[i].agencyId,i); |
|
|
|
} |
|
|
|
this.form = { ...res.data.data }; |
|
|
|
|
|
|
|
this.form.baseInfoDto.idNum = this.$route.params.idNum; |
|
|
|
this.form.baseInfoDto.mobile = this.$route.params.mobile; |
|
|
|
if (!res.data.data.familyInfoDto) { |
|
|
|
@ -1664,6 +1659,12 @@ export default { |
|
|
|
specialCategoryCodes: [], |
|
|
|
}; |
|
|
|
} |
|
|
|
if (!res.data.data.subsistenceAllowanceDto) { |
|
|
|
this.form.subsistenceAllowanceDto = { |
|
|
|
reasons: [], |
|
|
|
category:null , |
|
|
|
}; |
|
|
|
} |
|
|
|
if (!res.data.data.unemployedDto) { |
|
|
|
this.form.unemployedDto = { |
|
|
|
originWorkUnit: null, //原工作单位 |
|
|
|
@ -1703,7 +1704,7 @@ export default { |
|
|
|
formData.partyOrgIdPath || null; |
|
|
|
} |
|
|
|
this.footerInputList[i].children[index].value = |
|
|
|
formData[formName] || null; |
|
|
|
formData[formName] != null?formData[formName]:null |
|
|
|
this.footerInputList[i].children[index].id = |
|
|
|
formData.id; |
|
|
|
} |
|
|
|
|