- {{ record.CreateUserFullName || record.CreateUserName }}
+ {{ record.CreateUserFullName || record.CreateUserName }}
+
({{ record.CreateTime }})
@@ -250,6 +255,7 @@ import {
addQCChallengeReply,
cRCRequestReUpload,
verifyReuploadIsCanJump,
+ getVisitClinicalDataName,
} from '@/api/trials'
import { setReuploadFinished } from '@/api/trials/visit'
import adminAvatar from '@/assets/Admin.png'
@@ -322,6 +328,7 @@ export default {
ReuploadEnum: 0,
trialId: '',
uploadBtnLoading: false,
+ signReplaceText: null,
}
},
mounted() {
@@ -544,9 +551,16 @@ export default {
handleSetUploadFinished() {
// 签名认证
if (this.clinicalEnum > 0 && this.data.IsBaseLine) {
- const { ClinicalDataConfirmation } = const_.processSignature
- this.signCode = ClinicalDataConfirmation
- this.signVisible = true
+ getVisitClinicalDataName({ id: this.data.Id })
+ .then((res) => {
+ this.signReplaceText = res.Result.ClinicalDataName
+ const { ClinicalDataConfirmation } = const_.processSignature
+ this.signCode = ClinicalDataConfirmation
+ this.signVisible = true
+ })
+ .catch((err) => {
+ console.log(err)
+ })
} else {
this.$confirm(this.$t('trials:crcQuestion:message:reuploadConfirm'), {
type: 'warning',
From c4a498d953fe9fe5a4cbb7acf54ed05846ce5a61 Mon Sep 17 00:00:00 2001
From: wangxiaoshuang <825034831@qq.com>
Date: Thu, 13 Mar 2025 11:14:34 +0800
Subject: [PATCH 2/3] =?UTF-8?q?=E6=A3=80=E6=9F=A5=E8=A2=ABIQC=E6=A0=87?=
=?UTF-8?q?=E8=AE=B0=E5=88=A0=E9=99=A4=EF=BC=9A=E5=9C=A8crc=E6=9F=A5?=
=?UTF-8?q?=E7=9C=8B=E6=97=B6=EF=BC=8C=E8=AF=A5=E8=A1=8C=E8=AE=B0=E5=BD=95?=
=?UTF-8?q?=E5=A2=9E=E5=8A=A0=E5=88=A0=E9=99=A4=E7=BA=BF?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../visit/crc-upload/components/studyInfo.vue | 1 -
.../components/uploadNonDicomFiles.vue | 24 +++++++++++++++++++
2 files changed, 24 insertions(+), 1 deletion(-)
diff --git a/src/views/trials/trials-panel/visit/crc-upload/components/studyInfo.vue b/src/views/trials/trials-panel/visit/crc-upload/components/studyInfo.vue
index 450f8feb..41b526bb 100644
--- a/src/views/trials/trials-panel/visit/crc-upload/components/studyInfo.vue
+++ b/src/views/trials/trials-panel/visit/crc-upload/components/studyInfo.vue
@@ -127,7 +127,6 @@
diff --git a/src/views/trials/trials-panel/visit/crc-upload/components/uploadNonDicomFiles.vue b/src/views/trials/trials-panel/visit/crc-upload/components/uploadNonDicomFiles.vue
index e7302722..b36164da 100644
--- a/src/views/trials/trials-panel/visit/crc-upload/components/uploadNonDicomFiles.vue
+++ b/src/views/trials/trials-panel/visit/crc-upload/components/uploadNonDicomFiles.vue
@@ -27,6 +27,7 @@
:data="nonDicomStudyList"
style="width: 100%"
:default-sort="{ prop: 'CreateTime', order: 'ascending' }"
+ :row-class-name="tableRowClassName"
>
@@ -1308,6 +1312,14 @@ export default {
})
return newArr.join(' | ')
},
+ // 设置已删除序列行样式
+ tableRowClassName({ row, rowIndex }) {
+ if (row.IsDeleted) {
+ return 'delete-row'
+ } else {
+ return ''
+ }
+ },
},
}
@@ -1351,4 +1363,16 @@ export default {
pointer-events: none; //pointer-events:none用来控制该标签的点击穿透事件
}
}
+.non-dicom-wrapper {
+ ::v-deep .delete-row {
+ text-decoration-line: line-through;
+ color: #c0c4cc;
+ }
+}
+
+
From ff88cbd6e28c26507aefa1d33743ed1f0c38172c Mon Sep 17 00:00:00 2001
From: wangxiaoshuang <825034831@qq.com>
Date: Thu, 13 Mar 2025 13:23:56 +0800
Subject: [PATCH 3/3] 1
---
.../trials-panel/visit/crc-question/components/chatForm.vue | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/views/trials/trials-panel/visit/crc-question/components/chatForm.vue b/src/views/trials/trials-panel/visit/crc-question/components/chatForm.vue
index 4bb96236..3e5a7080 100644
--- a/src/views/trials/trials-panel/visit/crc-question/components/chatForm.vue
+++ b/src/views/trials/trials-panel/visit/crc-question/components/chatForm.vue
@@ -551,7 +551,7 @@ export default {
handleSetUploadFinished() {
// 签名认证
if (this.clinicalEnum > 0 && this.data.IsBaseLine) {
- getVisitClinicalDataName({ id: this.data.Id })
+ getVisitClinicalDataName({ id: this.data.SubjectVisitId })
.then((res) => {
this.signReplaceText = res.Result.ClinicalDataName
const { ClinicalDataConfirmation } = const_.processSignature