From 423867e026ef35dfcd926ab3769e7de571f56f46 Mon Sep 17 00:00:00 2001 From: wangwei <1610949092@qq.com> Date: Thu, 16 Feb 2023 17:03:25 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/basic/product/udIInfoSelect.vue | 15 +++++++++++++++ 1 file changed, 15 insertions(+) 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) {