From c9d56db6352ca3b2add4986ccf84de068becb971 Mon Sep 17 00:00:00 2001 From: chenhc <2369838784@qq.com> Date: Fri, 21 Jun 2024 10:52:40 +0800 Subject: [PATCH] =?UTF-8?q?feat:=200621-=E4=BF=AE=E5=A4=8D=E7=89=A9?= =?UTF-8?q?=E8=B5=84=E5=85=A5=E5=9B=AD=E7=94=B3=E8=AF=B7=E8=AF=A6=E6=83=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/supplier/products/selectDIDetailDialog.vue | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) 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); }, };