添加行政区划树以及业务分组树的操作提示

pull/1719/head
648540858 2024-12-10 22:02:47 +08:00
parent b2469e131c
commit f616cc7da2
2 changed files with 11 additions and 1 deletions

View File

@ -14,6 +14,7 @@
</div> </div>
<div v-if="showHeader" style="height: 2rem; background-color: #FFFFFF"></div> <div v-if="showHeader" style="height: 2rem; background-color: #FFFFFF"></div>
<div> <div>
<el-alert v-if="showAlert && edit" title="操作提示" description="你可以使用右键菜单管理节点" type="info" style="text-align: left"></el-alert>
<vue-easy-tree <vue-easy-tree
class="flow-tree" class="flow-tree"
ref="veTree" ref="veTree"
@ -65,6 +66,7 @@ export default {
id: "treeId" id: "treeId"
}, },
showCode: false, showCode: false,
showAlert: true,
searchSrt: "", searchSrt: "",
chooseId: "", chooseId: "",
treeData: [], treeData: [],
@ -101,6 +103,9 @@ export default {
} }
}).then((res) => { }).then((res) => {
if (res.data.code === 0) { if (res.data.code === 0) {
if (res.data.data.length > 0) {
this.showAlert = false
}
resolve(res.data.data); resolve(res.data.data);
} }

View File

@ -12,7 +12,8 @@
</div> </div>
</div> </div>
<div v-if="showHeader" style="height: 2rem; background-color: #FFFFFF" ></div> <div v-if="showHeader" style="height: 2rem; background-color: #FFFFFF" ></div>
<div > <div>
<el-alert v-if="showAlert && edit" title="操作提示" description="你可以使用右键菜单管理节点" type="info" style="text-align: left"></el-alert>
<vue-easy-tree <vue-easy-tree
class="flow-tree" class="flow-tree"
ref="veTree" ref="veTree"
@ -63,6 +64,7 @@ export default {
label: "name", label: "name",
}, },
showCode: false, showCode: false,
showAlert: true,
searchSrt: "", searchSrt: "",
chooseId: "", chooseId: "",
treeData: [], treeData: [],
@ -99,6 +101,9 @@ export default {
} }
}).then((res) => { }).then((res) => {
if (res.data.code === 0) { if (res.data.code === 0) {
if (res.data.data.length > 0) {
this.showAlert = false
}
resolve(res.data.data); resolve(res.data.data);
} }