diff --git a/src/views/purchase/purApply/purApplyEditDiaolog.vue b/src/views/purchase/purApply/purApplyEditDiaolog.vue index 2ceb8074..98b30516 100644 --- a/src/views/purchase/purApply/purApplyEditDiaolog.vue +++ b/src/views/purchase/purApply/purApplyEditDiaolog.vue @@ -97,7 +97,7 @@ 产品录入 - + @@ -297,7 +297,7 @@ export default { if (this.formData.arrivalTime == "" || this.formData.arrivalTime == null) { return this.$message.error("到货时间不能为空!"); } - if (this.formData.arrivalTime - + @@ -12,26 +12,26 @@ - - + - - - @@ -39,24 +39,39 @@ - - - + - + + + + + + + + + + + + + @@ -109,7 +124,6 @@ > - - {{ item }} + {{ + item + }} + @@ -144,6 +161,7 @@ import {filterCompanyProductplanRelevance, filterCompanyProductRelevance} from " import {addApplyDetail, addApply} from "../../../api/purchase/purApply"; import store from "../../../store"; import udiRlDetailDialog from "./../../purchase/purApply/purUdiRlDetailDialog"; +import {finProductSet} from "@/api/param/systemParamConfig"; export default { name: "stockOrderNewSelectProduct", @@ -211,6 +229,7 @@ export default { orderIdFk: "", supId: "", }, + productRemarkSet: {}, pickerOptions: { shortcuts: [ { @@ -401,13 +420,19 @@ export default { this.multipleSelection.zczbhhzbapzbh = this.currentCert; this.combine(); } - + }, + findBasicProductSet() { + finProductSet().then((response) => { + if (response.code == 20000) { + this.productRemarkSet = response.data; + } + }); }, }, components: {udiRlDetailDialog}, created() { - console.log(this.data) + this.findBasicProductSet(); if (this.$isNotBlank(this.data)) { this.ids = []; if (this.data.stockOrderLists.length > 0) { @@ -416,13 +441,17 @@ export default { } } } - }, };