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() },