+
+
@@ -1741,14 +1746,23 @@ export default {
displayLocation: [],
orgData: [],
delLoading: false,
- standState: ''
+ standState: '',
+ filterText: ''
}
},
props: {
},
watch: {
+ filterText(val) {
+ this.$refs.tree.filter(val);
+ }
},
methods: {
+ // 海外标签过滤
+ filterNode(value, data) {
+ if (!value) return true;
+ return data.menuName.indexOf(value) !== -1;
+ },
choiceZRR2 (type, title, id) {
this.drawerTitle = title
this.modalShowFlag2 = true