|
|
|
@ -331,14 +331,18 @@
|
|
|
|
|
</div>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="12" class="el-col">
|
|
|
|
|
<el-form-item label="医保编码:">
|
|
|
|
|
<el-input style="width: 80%"
|
|
|
|
|
size="small"
|
|
|
|
|
splaceholder="请输入内容"
|
|
|
|
|
v-model="repEditQuery.ybbm"
|
|
|
|
|
v-debounce-input:500ms="getYbHcData"
|
|
|
|
|
<div class="text item">
|
|
|
|
|
<div class="itemTag">
|
|
|
|
|
<span>医保编码: </span>
|
|
|
|
|
</div>
|
|
|
|
|
<el-input
|
|
|
|
|
style="width: 65%"
|
|
|
|
|
size="small"
|
|
|
|
|
splaceholder="请输入内容"
|
|
|
|
|
v-model="repEditQuery.ybbm"
|
|
|
|
|
v-debounce-input:500ms="getYbHcData"
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</div>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
@ -360,15 +364,18 @@
|
|
|
|
|
</div>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="12" class="el-col">
|
|
|
|
|
<el-form-item label="二级分类名称:">
|
|
|
|
|
<div class="text item">
|
|
|
|
|
<div class="itemTag">
|
|
|
|
|
<span>二级分类名称: </span>
|
|
|
|
|
</div>
|
|
|
|
|
<el-input
|
|
|
|
|
style="width: 80%"
|
|
|
|
|
style="width: 65%"
|
|
|
|
|
size="small"
|
|
|
|
|
splaceholder="请输入内容"
|
|
|
|
|
v-model="repEditQuery.catalogname2"
|
|
|
|
|
disabled
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</div>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
@ -387,16 +394,20 @@
|
|
|
|
|
></el-input>
|
|
|
|
|
</div>
|
|
|
|
|
</el-col>
|
|
|
|
|
|
|
|
|
|
<el-col :span="12" class="el-col">
|
|
|
|
|
<el-form-item label="耗材材质:">
|
|
|
|
|
<div class="text item">
|
|
|
|
|
<div class="itemTag">
|
|
|
|
|
<span>耗材材质: </span>
|
|
|
|
|
</div>
|
|
|
|
|
<el-input
|
|
|
|
|
style="width: 80%"
|
|
|
|
|
style="width: 65%"
|
|
|
|
|
size="small"
|
|
|
|
|
splaceholder="请输入内容"
|
|
|
|
|
v-model="repEditQuery.matrial"
|
|
|
|
|
disabled
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</div>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
@ -544,6 +555,35 @@
|
|
|
|
|
</el-select>
|
|
|
|
|
</div>
|
|
|
|
|
</el-col>
|
|
|
|
|
|
|
|
|
|
<el-col :span="12" class="el-col">
|
|
|
|
|
<div class="text item">
|
|
|
|
|
<div class="itemTag">
|
|
|
|
|
<span>分类编码: </span>
|
|
|
|
|
</div>
|
|
|
|
|
<el-select
|
|
|
|
|
v-model="repEditQuery.flbm"
|
|
|
|
|
filterable
|
|
|
|
|
remote
|
|
|
|
|
clearable="true"
|
|
|
|
|
style="width: 65%"
|
|
|
|
|
reserve-keyword
|
|
|
|
|
placeholder="请选择"
|
|
|
|
|
:remote-method="classifySearch"
|
|
|
|
|
:loading="loading"
|
|
|
|
|
>
|
|
|
|
|
<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>
|
|
|
|
|
</div>
|
|
|
|
|
</el-col>
|
|
|
|
|
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -720,6 +760,7 @@ import {insertCompanyProductRelevance, insertFilter} from "../../../api/basic/co
|
|
|
|
|
import store from "../../../store";
|
|
|
|
|
import {isBlank} from "@/utils/strUtil";
|
|
|
|
|
import {getHslbs, getThrProductType} from "@/api/thrsys/thrHsfl";
|
|
|
|
|
import {filterClassify} from "@/api/purchase/classifyCode"
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
name: "UdIInfoSelect",
|
|
|
|
@ -785,6 +826,7 @@ export default {
|
|
|
|
|
purType: null,
|
|
|
|
|
attributeType: null,
|
|
|
|
|
hcType: null,
|
|
|
|
|
flbm: null,
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
relevanceEdit: {
|
|
|
|
@ -823,10 +865,26 @@ export default {
|
|
|
|
|
supplementRequest: null,
|
|
|
|
|
hsflOptions: [],
|
|
|
|
|
thrTypeOptions: [],
|
|
|
|
|
classifyList: [],
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
|
|
|
|
|
|
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.repEditQuery.ybbm
|
|
|
|
@ -1025,7 +1083,9 @@ export default {
|
|
|
|
|
this.repEditQuery.manufactory = this.currentRow.manufactory;
|
|
|
|
|
this.repEditQuery.spmc = this.currentRow.spmc;
|
|
|
|
|
this.repEditQuery.cpms = this.currentRow.cpms;
|
|
|
|
|
this.repEditQuery.flbm = this.currentRow.flbm;
|
|
|
|
|
this.getYbHcData()
|
|
|
|
|
this.classifySearch()
|
|
|
|
|
// if (isBlank(this.relevanceEdit.cpms)) {
|
|
|
|
|
// this.repEditQuery.cpms =this.currentRow.cpmctymc+this.currentRow.ggxh
|
|
|
|
|
// }
|
|
|
|
|