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