hiddenRegionTree bug
parent
4eaf36d701
commit
b276638aa8
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue