diff --git a/src/views/supplier/products/selectDIDetailDialog.vue b/src/views/supplier/products/selectDIDetailDialog.vue index 590ba7d..6dba94d 100644 --- a/src/views/supplier/products/selectDIDetailDialog.vue +++ b/src/views/supplier/products/selectDIDetailDialog.vue @@ -10,7 +10,7 @@ 产品标识: - + @@ -558,11 +558,14 @@ export default { activeNames: ['1'], remark: "", detailList: [], + pQuery: {}, productRemarkSet: {} } }, methods: { - + handleDetail(row) { + this.editQuery = {...this.pQuery,...row}; + }, checkPass(val) { let query = { id: this.editDate.id, @@ -594,6 +597,7 @@ export default { selectOriginuuid(detailQuery) .then((response) => { this.detailList = response.data || []; + this.editQuery = { ...this.pQuery,...this.detailList[0]}; }) .catch(() => { this.detailList = []; @@ -607,6 +611,7 @@ export default { let ttquery = { originUuid: this.editQuery.uuid, }; + this.pQuery = this.editQuery this.getDetailList(ttquery); }, };