|
|
|
@ -328,6 +328,35 @@
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
<el-row>
|
|
|
|
|
<el-col :span="12">
|
|
|
|
|
<el-form-item label="分类编码:" prop="require">
|
|
|
|
|
<el-select
|
|
|
|
|
v-model="editQuery.flbm"
|
|
|
|
|
filterable
|
|
|
|
|
remote
|
|
|
|
|
clearable="true"
|
|
|
|
|
style="width: 80%"
|
|
|
|
|
reserve-keyword
|
|
|
|
|
placeholder="请选择"
|
|
|
|
|
:remote-method="classifySearch"
|
|
|
|
|
:loading="loading"
|
|
|
|
|
@change="classifyChange()"
|
|
|
|
|
>
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in classifyList"
|
|
|
|
|
:key="item.code"
|
|
|
|
|
:label="item.name"
|
|
|
|
|
:value="item.code">
|
|
|
|
|
<span>{{ item.code }}</span>
|
|
|
|
|
<span>{{ item.name }}</span>
|
|
|
|
|
</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</el-card>
|
|
|
|
@ -352,6 +381,23 @@
|
|
|
|
|
</el-row>
|
|
|
|
|
<el-divider direction="horizontal"></el-divider>
|
|
|
|
|
|
|
|
|
|
<el-row>
|
|
|
|
|
<el-col span="5">
|
|
|
|
|
<span class="sptext">是否需要扫码</span>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-divider direction="vertical"></el-divider>
|
|
|
|
|
<el-col span="5">
|
|
|
|
|
<el-select v-model="editQuery.requireScanCode" style="width: 65%" placeholder="状态" clearable>
|
|
|
|
|
<el-option label="是" :value=1></el-option>
|
|
|
|
|
<el-option label="否" :value=0></el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-divider direction="vertical"></el-divider>
|
|
|
|
|
<el-col span="13">
|
|
|
|
|
<span class="sptext">是否需要扫码</span>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
<el-divider></el-divider>
|
|
|
|
|
|
|
|
|
|
<el-row>
|
|
|
|
|
<el-col span="5">
|
|
|
|
@ -705,6 +751,7 @@ import Treeselect from "@riophae/vue-treeselect";
|
|
|
|
|
import {getListMenu, getOneName} from '@/api/basic/basicHospType'
|
|
|
|
|
import {getSupComapnys} from "@/api/purchase/supCompany";
|
|
|
|
|
import {getHslbs} from "@/api/thrsys/thrHsfl";
|
|
|
|
|
import {filterClassify} from "@/api/purchase/classifyCode"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
@ -766,6 +813,7 @@ export default {
|
|
|
|
|
measname: null,
|
|
|
|
|
nameCode: null
|
|
|
|
|
},
|
|
|
|
|
classifyList: [],
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
components: {
|
|
|
|
@ -789,8 +837,26 @@ export default {
|
|
|
|
|
if (this.editQuery.basicPrductRemak8 != null) {
|
|
|
|
|
this.findHsflMethod(this.editQuery.basicPrductRemak8);
|
|
|
|
|
}
|
|
|
|
|
this.classifySearch()
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
classifyChange(){
|
|
|
|
|
this.editQuery.requireScanCode = this.classifyList.find(item => item.code == this.editQuery.flbm).requireScanCode;
|
|
|
|
|
},
|
|
|
|
|
classifySearch(key) {
|
|
|
|
|
let query = {
|
|
|
|
|
key: key,
|
|
|
|
|
}
|
|
|
|
|
filterClassify(query)
|
|
|
|
|
.then(response => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.classifyList = response.data.list || [];
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.classifyList = [];
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
getYbHcData(){
|
|
|
|
|
let query = {
|
|
|
|
|
specificationCode: this.editQuery.ybbm
|
|
|
|
|