diff --git a/jero-web/src/views/documentManage/tags/dialog/OnlCgformTagForm.vue b/jero-web/src/views/documentManage/tags/dialog/OnlCgformTagForm.vue
index 0f16c800b..51ed3f74a 100644
--- a/jero-web/src/views/documentManage/tags/dialog/OnlCgformTagForm.vue
+++ b/jero-web/src/views/documentManage/tags/dialog/OnlCgformTagForm.vue
@@ -65,7 +65,12 @@
-
+
+
+ {{item.showarea}}
+
+
+
@@ -204,7 +209,9 @@
add: "tag/onlCgformTag/add",
edit: "tag/onlCgformTag/edit",
queryById: "tag/onlCgformTag/queryById"
- }
+ },
+ //展示区域选项内容
+ areaOptions:[]
}
},
watch:{
@@ -252,6 +259,7 @@
this.showFlowData();
},
mounted() {
+ this.loadShowArea()
console.log('edit3333',this.editData)
this.form={...this.editData}
// console.log('drawerVisible',this.drawerVisible)
@@ -269,9 +277,9 @@
//获取展示区域
loadShowArea(){
let params = {};
- getAction(``,params).then((res)=>{
+ getAction(`tag/onlCgformTag/queryShowArea`,params).then((res)=>{
if(res.success){
-
+ this.areaOptions=res.success.records
}
});
},
@@ -348,7 +356,10 @@
} else {
return 0
}
- }
+ },
+ handleChange(value) {
+ console.log(`selected ${value}`);
+ },
}
}