From 83bf082c43dc69aa62a6b7bd18b4b77d5aa273d5 Mon Sep 17 00:00:00 2001 From: wangxiaoshuang <825034831@qq.com> Date: Thu, 22 May 2025 16:52:50 +0800 Subject: [PATCH] =?UTF-8?q?crc=E4=B8=80=E8=87=B4=E6=80=A7=E6=A0=B8?= =?UTF-8?q?=E6=9F=A5=E5=9B=9E=E5=A4=8D=E4=BF=A1=E6=81=AF=E6=9C=89=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../visit/consistency-check/components/crcSendMessageNew.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/trials/trials-panel/visit/consistency-check/components/crcSendMessageNew.vue b/src/views/trials/trials-panel/visit/consistency-check/components/crcSendMessageNew.vue index 879a028c..8ec5ceb9 100644 --- a/src/views/trials/trials-panel/visit/consistency-check/components/crcSendMessageNew.vue +++ b/src/views/trials/trials-panel/visit/consistency-check/components/crcSendMessageNew.vue @@ -143,8 +143,8 @@ export default { } }, mounted() { - this.crcMessageInfo.ParamInfoList.forEach(v => { - this.msgList.push({ ...v, IsJoin: true, IsCheck: false, Id: this.getGuid(String(Date.now())) }) + this.crcMessageInfo.ParamInfoList.forEach((v, i) => { + this.msgList.push({ ...v, IsJoin: true, IsCheck: false, Id: this.getGuid(String(Date.now() + i)) }) }) this.compareStudy() },