From db59b5f7413c44d5092f8958cca24157e3786f91 Mon Sep 17 00:00:00 2001 From: fengyuan_yang <1976974459@qq.com> Date: Thu, 18 Jun 2026 14:26:00 +0800 Subject: [PATCH] =?UTF-8?q?2026-06-18=20=E6=8A=80=E6=9C=AF=E5=8F=82?= =?UTF-8?q?=E6=95=B0=E5=8D=A1=E6=9C=89=E6=9B=B4=E6=96=B0=E6=97=B6=E9=97=B4?= =?UTF-8?q?=E6=B2=A1=E6=9C=89=E6=9B=B4=E6=96=B0=E4=BA=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../technicalSpecificationList.vue | 34 ++++++++++++++----- 1 file changed, 26 insertions(+), 8 deletions(-) diff --git a/src/views/modules/sampleManagement/technicalSpecificationList.vue b/src/views/modules/sampleManagement/technicalSpecificationList.vue index 5988e02..8b46666 100644 --- a/src/views/modules/sampleManagement/technicalSpecificationList.vue +++ b/src/views/modules/sampleManagement/technicalSpecificationList.vue @@ -1581,9 +1581,15 @@ cancelButtonText: '取消', type: 'warning' }).then(() => { - row.username = this.$store.state.user.name - row.nodeConclusion = 'B' - bmStatusToDead(row).then(({data}) => { + const operator = this.$store.state.user.name + const params = { + ...row, + userName: operator, + username: operator, + updateBy: operator, + nodeConclusion: 'B' + } + bmStatusToDead(params).then(({data}) => { if (data && data.code === 0) { this.$message.success( '操作成功') this.search() @@ -1601,8 +1607,14 @@ cancelButtonText: '取消', type: 'warning' }).then(() => { - row.username = this.$store.state.user.name - bmStatusToCg(row).then(({data}) => { + const operator = this.$store.state.user.name + const params = { + ...row, + userName: operator, + username: operator, + updateBy: operator + } + bmStatusToCg(params).then(({data}) => { if (data && data.code === 0) { this.$message.success( '操作成功') this.search() @@ -1620,9 +1632,15 @@ cancelButtonText: '取消', type: 'warning' }).then(() => { - row.username = this.$store.state.user.name - row.nodeConclusion = 'A' - bmStatusToFinish(row).then(({data}) => { + const operator = this.$store.state.user.name + const params = { + ...row, + userName: operator, + username: operator, + updateBy: operator, + nodeConclusion: 'A' + } + bmStatusToFinish(params).then(({data}) => { if (data && data.code === 0) { this.$message.success( '操作成功') this.search()