Browse Source

修一下

wxz_dy_form_config
tianq 2 years ago
parent
commit
8c1d4a9ac7
  1. 4
      epmet-oper-web/src/views/modules/customer/customize/menuCustomer.vue
  2. 7
      epmet-oper-web/src/views/modules/customer/customize/menuDataCustomer.vue
  3. 4
      epmet-oper-web/src/views/modules/workPc/dataMenu.vue
  4. 4
      epmet-oper-web/src/views/modules/workPc/menu.vue

4
epmet-oper-web/src/views/modules/customer/customize/menuCustomer.vue

@ -90,9 +90,9 @@ export default {
if (this.menuName != '') { if (this.menuName != '') {
let saveList = []; let saveList = [];
this.onFuzzyTreeList('name', this.menuName, this.dataList, saveList); this.onFuzzyTreeList('name', this.menuName, this.dataList, saveList);
this.$refs.form.data = saveList; this.dataList = [...saveList];
} else { } else {
this.$refs.form.data = this.dataList; this.query();
} }
}, },

7
epmet-oper-web/src/views/modules/customer/customize/menuDataCustomer.vue

@ -89,9 +89,9 @@ export default {
if (this.menuName != '') { if (this.menuName != '') {
let saveList = []; let saveList = [];
this.onFuzzyTreeList('name', this.menuName, this.dataList, saveList); this.onFuzzyTreeList('name', this.menuName, this.dataList, saveList);
this.$refs.form.data = saveList; this.dataList = [...saveList];
} else { } else {
this.$refs.form.data = this.dataList; this.query();
} }
}, },
@ -223,7 +223,8 @@ export default {
margin: 0 0 20px 0; margin: 0 0 20px 0;
} }
.little-head { .little-head {
border-bottom: dashed 1px #ccc; line-height: 50px; border-bottom: dashed 1px #ccc;
line-height: 50px;
margin-bottom: 20px; margin-bottom: 20px;
} }
</style> </style>

4
epmet-oper-web/src/views/modules/workPc/dataMenu.vue

@ -111,9 +111,9 @@ export default {
if (this.menuName != '') { if (this.menuName != '') {
let saveList = []; let saveList = [];
this.onFuzzyTreeList('name', this.menuName, this.dataList, saveList); this.onFuzzyTreeList('name', this.menuName, this.dataList, saveList);
this.$refs.form.data = saveList; this.dataList = [...saveList];
} else { } else {
this.$refs.form.data = this.dataList; this.getDataList();
} }
}, },

4
epmet-oper-web/src/views/modules/workPc/menu.vue

@ -107,9 +107,9 @@ export default {
if (this.menuName != '') { if (this.menuName != '') {
let saveList = []; let saveList = [];
this.onFuzzyTreeList('name', this.menuName, this.dataList, saveList); this.onFuzzyTreeList('name', this.menuName, this.dataList, saveList);
this.$refs.form.data = saveList; this.dataList = [...saveList];
} else { } else {
this.$refs.form.data = this.dataList; this.getDataList();
} }
}, },

Loading…
Cancel
Save