|
@ -22,6 +22,7 @@ |
|
|
<div |
|
|
<div |
|
|
:class="{ item: true, active: index == active }" |
|
|
:class="{ item: true, active: index == active }" |
|
|
v-for="(item, index) in menuList" |
|
|
v-for="(item, index) in menuList" |
|
|
|
|
|
v-for="(item, index) in menuList" :key="index" |
|
|
@click="handelCLickMenu(item.id, index)" |
|
|
@click="handelCLickMenu(item.id, index)" |
|
|
> |
|
|
> |
|
|
<span>{{ item.name }}</span |
|
|
<span>{{ item.name }}</span |
|
@ -1161,7 +1162,6 @@ export default { |
|
|
business_record:'业务记录', |
|
|
business_record:'业务记录', |
|
|
update_record:'更新记录' |
|
|
update_record:'更新记录' |
|
|
}; |
|
|
}; |
|
|
|
|
|
|
|
|
const keysWithValueOne = []; |
|
|
const keysWithValueOne = []; |
|
|
for (const key in this.resiDetailObj.baseInfoDto.categoryInfo) { |
|
|
for (const key in this.resiDetailObj.baseInfoDto.categoryInfo) { |
|
|
if (this.resiDetailObj.baseInfoDto.categoryInfo[key] === 1 && this.incidence[key]) { |
|
|
if (this.resiDetailObj.baseInfoDto.categoryInfo[key] === 1 && this.incidence[key]) { |
|
@ -1265,10 +1265,36 @@ export default { |
|
|
console.log(err); |
|
|
console.log(err); |
|
|
}); |
|
|
}); |
|
|
}, |
|
|
}, |
|
|
|
|
|
// async handleSaveTuomin1() { |
|
|
|
|
|
// const url = `/actual/base/residentBaseInfo/getResiUserInfo/${this.resiId}`; |
|
|
|
|
|
// let parm = { |
|
|
|
|
|
// password, |
|
|
|
|
|
// }; |
|
|
|
|
|
// const { data, code, msg } = await requestPost(url, parm); |
|
|
|
|
|
// }, |
|
|
|
|
|
async handelClickJumpEdit() { |
|
|
|
|
|
console.log(this) |
|
|
|
|
|
const url = `/actual/base/residentCategoryUpdateInfo/isUpdater/${this.resiId}`; |
|
|
|
|
|
const { data, code, msg } = await requestPost(url); |
|
|
|
|
|
console.log(this.form.password) |
|
|
|
|
|
console.log(data, code, msg) |
|
|
|
|
|
if(code==0){ |
|
|
|
|
|
|
|
|
|
|
|
if(data==false){ |
|
|
|
|
|
this.$router.push({ |
|
|
|
|
|
name: "edit-resi", |
|
|
|
|
|
|
|
|
handelClickJumpEdit() { |
|
|
}); |
|
|
|
|
|
} |
|
|
|
|
|
else{ |
|
|
this.checkType = "edit"; |
|
|
this.checkType = "edit"; |
|
|
this.showCheckPassword = true; |
|
|
this.showCheckPassword = true; |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
else{ |
|
|
|
|
|
this.$message.error(msg); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
}, |
|
|
}, |
|
|
async getDictName(url, params, value, itemType, opction) { |
|
|
async getDictName(url, params, value, itemType, opction) { |
|
|
try { |
|
|
try { |
|
|