|
|
|
@ -292,19 +292,6 @@ |
|
|
|
</div> |
|
|
|
</el-dialog> |
|
|
|
|
|
|
|
<el-dialog title="居民详情" :visible.sync="dialogVisible2" width="986px" top="5vh" append-to-body class="dialog-h" |
|
|
|
:close-on-click-modal="false" :before-close="() => { |
|
|
|
this.dialogVisible2 = false; |
|
|
|
} |
|
|
|
"> |
|
|
|
<div class="dialog-h-content scroll-h"> |
|
|
|
<resi-info v-if="dialogVisible2" ref="resiInfo" :fixed="true" :resi-id="lookResiId" /> |
|
|
|
</div> |
|
|
|
|
|
|
|
<div class="resi-btns"> |
|
|
|
<el-button size="small" class="diy-button--white" plain @click="dialogVisible2 = false">关闭</el-button> |
|
|
|
</div> |
|
|
|
</el-dialog> |
|
|
|
|
|
|
|
<!-- 变更记录 --> |
|
|
|
<el-dialog :visible.sync="changeRecordShow" :close-on-click-modal="false" :close-on-press-escape="false" |
|
|
|
@ -393,8 +380,7 @@ export default { |
|
|
|
dialogEditVisible: false, |
|
|
|
dialogVisible: false, |
|
|
|
formType: 'add', |
|
|
|
// 显示人员详情 |
|
|
|
dialogVisible2: false, |
|
|
|
|
|
|
|
lookResiId: "", |
|
|
|
|
|
|
|
uploadUlr: |
|
|
|
@ -882,12 +868,38 @@ export default { |
|
|
|
console.log(tab, event); |
|
|
|
}, |
|
|
|
|
|
|
|
// 查看 |
|
|
|
async handleLook(row) { |
|
|
|
this.lookResiId = row.resiId; |
|
|
|
this.dialogVisible2 = true; |
|
|
|
}, |
|
|
|
|
|
|
|
this.lookResiId = row.resiId; |
|
|
|
let { |
|
|
|
agencyId, |
|
|
|
gridId, |
|
|
|
gridName, |
|
|
|
gender, |
|
|
|
homeId, |
|
|
|
homeName, |
|
|
|
name, |
|
|
|
resiId, |
|
|
|
} = row; |
|
|
|
this.$store.dispatch("saveData", { |
|
|
|
agencyId, |
|
|
|
gridId, |
|
|
|
gridName, |
|
|
|
gender, |
|
|
|
homeId, |
|
|
|
homeName, |
|
|
|
name, |
|
|
|
resiId, |
|
|
|
}); |
|
|
|
this.$router.push({ name: "jumin-huaxiang" }); |
|
|
|
this.$store.state.contentTabs = this.$store.state.contentTabs.map( |
|
|
|
(item) => { |
|
|
|
if (item.name === "jumin-huaxiang") { |
|
|
|
return { ...item, title: name }; |
|
|
|
} |
|
|
|
return item; |
|
|
|
} |
|
|
|
); |
|
|
|
}, |
|
|
|
// 编辑 |
|
|
|
async handelCLickShowCheckPassword(row) { |
|
|
|
const url = `/actual/base/residentCategoryUpdateInfo/isUpdater/${row.resiId}`; |
|
|
|
|