Browse Source

居民详情验证

feature
是小王呀\24601 1 year ago
parent
commit
dfdc77d9a3
  1. 4
      src/views/dataBoard/overview/index.vue
  2. 30
      src/views/modules/portrayal/jumin/index.vue

4
src/views/dataBoard/overview/index.vue

@ -73,8 +73,8 @@
-- bmysxqk = 不满意事项情况
-- xqwwcqk = 需求未完成情况
-->
<MapDialog v-if="isShowMapDialog" ref="MapDialog" :currentLevelData="currentLevelData" :type="mapType"
@close="isShowMapDialog = false"/>
<!-- <MapDialog v-if="isShowMapDialog" ref="MapDialog" :currentLevelData="currentLevelData" :type="mapType"
@close="isShowMapDialog = false"/> -->
<cpt-loading v-show="false"/>
<MapResourceInfo ref="MapResourceInfo" :currentLevelData="currentLevelData"/>
</div>

30
src/views/modules/portrayal/jumin/index.vue

@ -22,6 +22,7 @@
<div
:class="{ item: true, active: index == active }"
v-for="(item, index) in menuList"
v-for="(item, index) in menuList" :key="index"
@click="handelCLickMenu(item.id, index)"
>
<span>{{ item.name }}</span
@ -1161,7 +1162,6 @@ export default {
business_record:'业务记录',
update_record:'更新记录'
};
const keysWithValueOne = [];
for (const key in this.resiDetailObj.baseInfoDto.categoryInfo) {
if (this.resiDetailObj.baseInfoDto.categoryInfo[key] === 1 && this.incidence[key]) {
@ -1265,10 +1265,36 @@ export default {
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.showCheckPassword = true;
}
}
else{
this.$message.error(msg);
}
},
async getDictName(url, params, value, itemType, opction) {
try {

Loading…
Cancel
Save