diff --git a/src/views/basic/product/udIInfoSelect.vue b/src/views/basic/product/udIInfoSelect.vue index 34b0c448..e9c203ab 100644 --- a/src/views/basic/product/udIInfoSelect.vue +++ b/src/views/basic/product/udIInfoSelect.vue @@ -262,6 +262,7 @@ import {udiUpload} from "@/api/thrsys/smp" import {exportExcel} from "@/api/basic/udiInfoExport" import {selectSysParamByKey} from "@/api/param/systemParamConfig"; import {filterByUuid} from "@/api/basic/udiInfo"; +import {sysFilter} from "@/api/basic/product/udiRelevance"; export default { @@ -318,6 +319,18 @@ export default { }, methods: { + getSysFilter() { + sysFilter() + .then((response) => { + this.loading = false; + this.filterList = response.data.list || []; + }) + .catch(() => { + this.loading = false; + this.filterList = []; + }); + + }, onReset() { this.$router.push({ path: "", @@ -353,6 +366,8 @@ export default { this.list = []; this.total = 0; }); + this.filterList=[]; + this.getSysFilter(); }, getDetailList(detailQuery) {