|
|
|
@ -162,12 +162,26 @@
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="12" v-if="productRemarkSet.remarkEnable8">
|
|
|
|
|
<el-form-item :label="productRemarkSet.remarkTitle8+':'">
|
|
|
|
|
<el-input
|
|
|
|
|
style="width: 80%"
|
|
|
|
|
size="small"
|
|
|
|
|
splaceholder="请输入内容"
|
|
|
|
|
<el-select
|
|
|
|
|
v-model="editQuery.basicPrductRemak8"
|
|
|
|
|
></el-input>
|
|
|
|
|
filterable
|
|
|
|
|
remote
|
|
|
|
|
clearable="true"
|
|
|
|
|
reserve-keyword
|
|
|
|
|
placeholder="请选择物价类别"
|
|
|
|
|
:remote-method="findHsflMethod"
|
|
|
|
|
style="width: 80%"
|
|
|
|
|
>
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in hsflOptions"
|
|
|
|
|
:key="item.hsbm"
|
|
|
|
|
:label="item.hsmc"
|
|
|
|
|
:value="item.hsbm"
|
|
|
|
|
>
|
|
|
|
|
<span style="float: left">{{ item.hsmc }}</span>
|
|
|
|
|
<span style="float: right; color: #8492a6; font-size: 13px">{{ item.hsbm }}</span>
|
|
|
|
|
</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
@ -231,6 +245,7 @@ import {updateById} from '@/api/basic/udiRelevance'
|
|
|
|
|
import {filterByUuid} from '@/api/basic/udiInfo'
|
|
|
|
|
import selectErp from "./udiInfoselectErpUdi";
|
|
|
|
|
import selectUdiVersion from '@/views/basic/product/UdiinfoSelectVersion'
|
|
|
|
|
import {getHslbs} from "@/api/thrsys/thrHsfl";
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
name: 'productEdit',
|
|
|
|
@ -277,6 +292,7 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
editSingleDiDialogVisible: false,
|
|
|
|
|
selectErpDialogVisible: false, //选入ERP产品
|
|
|
|
|
hsflOptions: [],
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
@ -297,7 +313,14 @@ export default {
|
|
|
|
|
isDateBy: this.editQuery.isDateBy,
|
|
|
|
|
relSupId: this.editQuery.id,
|
|
|
|
|
groupBuy: this.editQuery.groupBuy,
|
|
|
|
|
uid: this.editQuery.uid,
|
|
|
|
|
basicPrductRemak1: this.editQuery.basicPrductRemak1,
|
|
|
|
|
basicPrductRemak2: this.editQuery.basicPrductRemak2,
|
|
|
|
|
basicPrductRemak3: this.editQuery.basicPrductRemak3,
|
|
|
|
|
basicPrductRemak4: this.editQuery.basicPrductRemak4,
|
|
|
|
|
basicPrductRemak5: this.editQuery.basicPrductRemak5,
|
|
|
|
|
basicPrductRemak6: this.editQuery.basicPrductRemak6,
|
|
|
|
|
basicPrductRemak7: this.editQuery.basicPrductRemak7,
|
|
|
|
|
basicPrductRemak8: this.editQuery.basicPrductRemak8,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
updateById(data).then(res => {
|
|
|
|
@ -407,6 +430,25 @@ export default {
|
|
|
|
|
this.selectVersionVisible = false;
|
|
|
|
|
this.getThirdSysDetail();
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
findHsflMethod(query) {
|
|
|
|
|
this.hsflOptions = [];
|
|
|
|
|
let cQuery = {
|
|
|
|
|
key: query,
|
|
|
|
|
page: 1,
|
|
|
|
|
limit: 20
|
|
|
|
|
};
|
|
|
|
|
getHslbs(cQuery)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.hsflOptions = response.data.list || [];
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
,
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
components: {
|
|
|
|
|
selectErp
|
|
|
|
@ -419,6 +461,10 @@ export default {
|
|
|
|
|
limit: 10,
|
|
|
|
|
};
|
|
|
|
|
this.getDetailList(ttquery);
|
|
|
|
|
if (this.editQuery.basicPrductRemak8 != null) {
|
|
|
|
|
this.findHsflMethod(this.editQuery.basicPrductRemak8);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|