|
|
|
@ -1,7 +1,7 @@
|
|
|
|
|
<template>
|
|
|
|
|
<div>
|
|
|
|
|
<el-card>
|
|
|
|
|
<el-form :model="filterQuery" size="mini" label-width="100px" v-show="showSearch">
|
|
|
|
|
<el-form :model="filterQuery" size="mini" label-width="100px" v-show="showSearch">
|
|
|
|
|
<el-row>
|
|
|
|
|
<el-col :span="18">
|
|
|
|
|
<el-form-item class="query-form-item" label="UDI码:">
|
|
|
|
@ -107,6 +107,7 @@ import {bindBasicHospProduct, saveBasicHospType, getBindList} from "@/api/basic/
|
|
|
|
|
import {saveRel, productList, SelectproductList} from "@/api/basic/basicCaterelType";
|
|
|
|
|
|
|
|
|
|
import {sysFilter} from '@/api/basic/udiRelevance'
|
|
|
|
|
import {isBlank} from "@/utils/strUtil";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
@ -178,8 +179,15 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
SelectInstentProduct(){
|
|
|
|
|
this.filterQuery.page = 1;
|
|
|
|
|
this.getselectList();
|
|
|
|
|
if( isBlank(this.filterQuery.udiCode) && isBlank(this.filterQuery.unionCode) &&
|
|
|
|
|
isBlank(this.filterQuery.cpmctymc) && isBlank(this.filterQuery.ggxh)
|
|
|
|
|
&& isBlank(this.filterQuery.ylqxzcrbarmc) && isBlank(this.filterQuery.thrPiId)){
|
|
|
|
|
this.$message("请先输入搜索条件!")
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.filterQuery.page = 1;
|
|
|
|
|
this.getselectList();
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
getSysFilter() {
|
|
|
|
|