|
|
@ -100,6 +100,7 @@
|
|
|
|
import {getUdiInfos, thirdSysDetail,} from "@/api/basic/product/udiRelevance";
|
|
|
|
import {getUdiInfos, thirdSysDetail,} from "@/api/basic/product/udiRelevance";
|
|
|
|
import {filterByUuid} from "@/api/basic/product/udiInfo";
|
|
|
|
import {filterByUuid} from "@/api/basic/product/udiInfo";
|
|
|
|
import {bindBasicHospProduct, saveBasicHospType,getBindList} from "@/api/basic/basicHospType";
|
|
|
|
import {bindBasicHospProduct, saveBasicHospType,getBindList} from "@/api/basic/basicHospType";
|
|
|
|
|
|
|
|
import { sysFilter } from '@/api/basic/udiRelevance'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -167,6 +168,18 @@ export default {
|
|
|
|
this.filterQuery.page = 1;
|
|
|
|
this.filterQuery.page = 1;
|
|
|
|
this.getList();
|
|
|
|
this.getList();
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
getSysFilter() {
|
|
|
|
|
|
|
|
sysFilter()
|
|
|
|
|
|
|
|
.then((response) => {
|
|
|
|
|
|
|
|
this.loading = false;
|
|
|
|
|
|
|
|
this.filterList = response.data.list || [];
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
.catch(() => {
|
|
|
|
|
|
|
|
this.loading = false;
|
|
|
|
|
|
|
|
this.filterList = [];
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
getList() {
|
|
|
|
getList() {
|
|
|
|
getBindList(this.filterQuery)
|
|
|
|
getBindList(this.filterQuery)
|
|
|
|
.then((response) => {
|
|
|
|
.then((response) => {
|
|
|
@ -224,6 +237,7 @@ export default {
|
|
|
|
created() {
|
|
|
|
created() {
|
|
|
|
this.filterQuery.bindType=1
|
|
|
|
this.filterQuery.bindType=1
|
|
|
|
this.getList();
|
|
|
|
this.getList();
|
|
|
|
|
|
|
|
this.getSysFilter();
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
};
|
|
|
|