From 0810a49ce1c57ea53970624a770a63f7afa0af5c Mon Sep 17 00:00:00 2001 From: "han\\hanst" Date: Mon, 9 Mar 2026 16:55:44 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A4=8D=E5=88=B6=E9=9C=80=E8=A6=81=E8=BE=93?= =?UTF-8?q?=E5=85=A5=E8=AF=95=E9=AA=8C=E5=8D=95=E5=8F=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../modules/erf/components/expApplyForm.vue | 28 +++++++------------ src/views/modules/erf/expApplyList.vue | 10 ++++++- 2 files changed, 19 insertions(+), 19 deletions(-) diff --git a/src/views/modules/erf/components/expApplyForm.vue b/src/views/modules/erf/components/expApplyForm.vue index 0c79a27..0ae6086 100644 --- a/src/views/modules/erf/components/expApplyForm.vue +++ b/src/views/modules/erf/components/expApplyForm.vue @@ -7,18 +7,6 @@ label-position="top" style="margin-left: 5px; margin-top: -5px;"> - - - - - - - - - @@ -49,7 +37,15 @@ - + + + + + + - - - - - + {{ copyData.sourceApplyNo }} + + + @@ -741,6 +744,7 @@ export default { copyLoading: false, copyData: { sourceApplyNo: '', + applyNo: '', copyOptions: ['triConfirm','rawMaterialList'] // 默认全选 } } @@ -1604,10 +1608,14 @@ export default { * 确认复制申请单 */ confirmCopy() { + if (!this.copyData.applyNo) { + this.$message.warning('请输入新的试验单号') + return + } this.copyLoading = true - const copyParams = { sourceApplyNo: this.copyData.sourceApplyNo, + applyNo: this.copyData.applyNo, copyTriConfirm: this.copyData.copyOptions.includes('triConfirm'), copyAttachment: this.copyData.copyOptions.includes('attachment'), copyRawMaterialList: this.copyData.copyOptions.includes('rawMaterialList'),