|
|
|
@ -309,7 +309,7 @@ |
|
|
|
:resi-id="editUserId" |
|
|
|
@changegroup="handleChangeGroup" |
|
|
|
/> |
|
|
|
|
|
|
|
|
|
|
|
</div> |
|
|
|
|
|
|
|
<div class="resi-btns"> |
|
|
|
@ -401,7 +401,7 @@ |
|
|
|
ref="ref_diy" |
|
|
|
:list="exportList" |
|
|
|
:search="{ |
|
|
|
formCode: 'resi_base_info', |
|
|
|
formCode: 'resident_base_info', |
|
|
|
pageNo: currentPage, |
|
|
|
pageSize: pageSize, |
|
|
|
conditions: conditions, |
|
|
|
@ -642,7 +642,7 @@ export default { |
|
|
|
categoryKey: "resi_info", |
|
|
|
paramMap: { |
|
|
|
searchForm: { |
|
|
|
formCode: "resi_base_info", |
|
|
|
formCode: "resident_base_info", |
|
|
|
pageNo: this.currentPage, |
|
|
|
pageSize: this.pageSize, |
|
|
|
conditions: this.conditions, |
|
|
|
@ -898,7 +898,7 @@ export default { |
|
|
|
this.exportBtn = true; |
|
|
|
this.exportBtnTitle = "正在导出..."; |
|
|
|
let params = { |
|
|
|
formCode: "resi_base_info", |
|
|
|
formCode: "resident_base_info", |
|
|
|
conditions: this.conditions, |
|
|
|
}; |
|
|
|
|
|
|
|
@ -1330,7 +1330,7 @@ export default { |
|
|
|
|
|
|
|
getrowInfo(id) { |
|
|
|
let params = { |
|
|
|
formCode: "resi_base_info", |
|
|
|
formCode: "resident_base_info", |
|
|
|
icResiUserId: id, |
|
|
|
}; |
|
|
|
this.$http |
|
|
|
@ -1408,7 +1408,7 @@ export default { |
|
|
|
let options = []; |
|
|
|
// console.log('getOptionsList----', url) |
|
|
|
await this.$http |
|
|
|
.post(url, { formCode: "resi_base_info" }) |
|
|
|
.post(url, { formCode: "resident_base_info" }) |
|
|
|
.then(({ data: res }) => { |
|
|
|
if (res.code !== 0) { |
|
|
|
return this.$message.error(res.msg); |
|
|
|
@ -1441,7 +1441,7 @@ export default { |
|
|
|
async getFormList(type) { |
|
|
|
await this.$http |
|
|
|
.post("/oper/customize/icform/getcustomerform", { |
|
|
|
formCode: "resi_base_info", |
|
|
|
formCode: "resident_base_info", |
|
|
|
dynamic: true, |
|
|
|
}) |
|
|
|
.then(({ data: res }) => { |
|
|
|
@ -1485,7 +1485,7 @@ export default { |
|
|
|
async getExportList(type) { |
|
|
|
const url = "/oper/customize/icformitemgroup/list"; |
|
|
|
let params = { |
|
|
|
formCode: "resi_base_info", |
|
|
|
formCode: "resident_base_info", |
|
|
|
}; |
|
|
|
|
|
|
|
const { data, code, msg } = await requestPost(url, params); |
|
|
|
@ -1552,7 +1552,7 @@ export default { |
|
|
|
immediate: true |
|
|
|
} |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
}; |
|
|
|
</script> |
|
|
|
|
|
|
|
|