|
|
@ -10,7 +10,7 @@
|
|
|
|
<span>产品标识:</span>
|
|
|
|
<span>产品标识:</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<el-table :data="detailList" style="width: 100%" border key="3" highlight-current-row>
|
|
|
|
<el-table :data="detailList" style="width: 100%" border key="3" highlight-current-row @current-change="handleDetail">
|
|
|
|
<el-table-column label="产品最小销售标识" prop="nameCode" show-overflow-tooltip></el-table-column>
|
|
|
|
<el-table-column label="产品最小销售标识" prop="nameCode" show-overflow-tooltip></el-table-column>
|
|
|
|
<el-table-column label="物资名称" prop="cpmctymc" show-overflow-tooltip></el-table-column>
|
|
|
|
<el-table-column label="物资名称" prop="cpmctymc" show-overflow-tooltip></el-table-column>
|
|
|
|
<el-table-column label="包装级别" prop="packLevel" show-overflow-tooltip></el-table-column>
|
|
|
|
<el-table-column label="包装级别" prop="packLevel" show-overflow-tooltip></el-table-column>
|
|
|
@ -558,11 +558,14 @@ export default {
|
|
|
|
activeNames: ['1'],
|
|
|
|
activeNames: ['1'],
|
|
|
|
remark: "",
|
|
|
|
remark: "",
|
|
|
|
detailList: [],
|
|
|
|
detailList: [],
|
|
|
|
|
|
|
|
pQuery: {},
|
|
|
|
productRemarkSet: {}
|
|
|
|
productRemarkSet: {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
methods: {
|
|
|
|
|
|
|
|
handleDetail(row) {
|
|
|
|
|
|
|
|
this.editQuery = {...this.pQuery,...row};
|
|
|
|
|
|
|
|
},
|
|
|
|
checkPass(val) {
|
|
|
|
checkPass(val) {
|
|
|
|
let query = {
|
|
|
|
let query = {
|
|
|
|
id: this.editDate.id,
|
|
|
|
id: this.editDate.id,
|
|
|
@ -594,6 +597,7 @@ export default {
|
|
|
|
selectOriginuuid(detailQuery)
|
|
|
|
selectOriginuuid(detailQuery)
|
|
|
|
.then((response) => {
|
|
|
|
.then((response) => {
|
|
|
|
this.detailList = response.data || [];
|
|
|
|
this.detailList = response.data || [];
|
|
|
|
|
|
|
|
this.editQuery = { ...this.pQuery,...this.detailList[0]};
|
|
|
|
})
|
|
|
|
})
|
|
|
|
.catch(() => {
|
|
|
|
.catch(() => {
|
|
|
|
this.detailList = [];
|
|
|
|
this.detailList = [];
|
|
|
@ -607,6 +611,7 @@ export default {
|
|
|
|
let ttquery = {
|
|
|
|
let ttquery = {
|
|
|
|
originUuid: this.editQuery.uuid,
|
|
|
|
originUuid: this.editQuery.uuid,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
this.pQuery = this.editQuery
|
|
|
|
this.getDetailList(ttquery);
|
|
|
|
this.getDetailList(ttquery);
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
};
|
|
|
|