hiddenRegionTree bug

2023年12月27日V01.00.50
liulixin 2024-01-15 10:14:51 +08:00
parent a79cd7165e
commit 0a822905d7
1 changed files with 18 additions and 0 deletions

View File

@ -458,6 +458,7 @@ export default {
await this.getDict() await this.getDict()
await this.handleAdd() await this.handleAdd()
await this.getEditMyInfo() await this.getEditMyInfo()
await this.getHiddenReginTreeListData()
loading.close() loading.close()
}, },
mounted() { mounted() {
@ -1048,6 +1049,23 @@ export default {
openConfirm() { openConfirm() {
this.$refs.confirm.init() this.$refs.confirm.init()
}, },
//
getHiddenReginTreeListData() {
return new Promise((resolve) => {
this.treeLoading = true
requestFN(
'/hiddenRegion/listAll',
{}
).then((data) => {
this.treeLoading = false
this.hiddenPartList = JSON.parse(data.zTreeNodes)
resolve('ok')
}).catch((e) => {
this.treeLoading = false
})
})
},
getProposal(information) { getProposal(information) {
this.form.CONFIRM_MESSAGE = information.INSPECTION_USER_OPINION this.form.CONFIRM_MESSAGE = information.INSPECTION_USER_OPINION
this.form.CONFIRM_MESSAGE_SIGN = information.INSPECTION_USER_SIGN_IMG this.form.CONFIRM_MESSAGE_SIGN = information.INSPECTION_USER_SIGN_IMG