+
@@ -1754,12 +1757,10 @@ export default {
this.selected.TrialId = this.subjectRowData.TrialId
this.selected.SubjectId = this.subjectRowData.SubjectId
this.isShow = true
- console.log(res)
})
}
},
handleView2(row) {
- console.log(row)
this.rowData = { ...row }
this.openType = 'look'
this.preview.visible = true
@@ -1914,7 +1915,6 @@ export default {
this.list = res.Result.CurrentPageData
this.total = res.Result.TotalCount
this.otherInfo = res.OtherInfo
- console.log(this.otherInfo)
})
.catch(() => {
this.loading = false
@@ -2053,9 +2053,16 @@ export default {
this.otherInfo.ClinicalInformationTransmissionEnum > 0 &&
this.rowData.IsBaseLine
) {
- const { ClinicalDataConfirmation } = const_.processSignature
- this.signCode = ClinicalDataConfirmation
- this.signVisible = true
+ getVisitClinicalDataName({ id: this.rowData.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.submit()
}
From ca4f2c4a8e2a87a70cd00faf1313e7ae7af7117c Mon Sep 17 00:00:00 2001
From: wangxiaoshuang <825034831@qq.com>
Date: Mon, 30 Dec 2024 13:15:50 +0800
Subject: [PATCH 10/15] =?UTF-8?q?=E7=99=BB=E5=BD=95=E6=97=A5=E5=BF=97?=
=?UTF-8?q?=E8=AF=A6=E6=83=85=E5=BC=B9=E6=A1=86=E6=A0=B7=E5=BC=8F=E4=BF=AE?=
=?UTF-8?q?=E6=94=B9?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/system/login-log/detail.vue | 9 ++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)
diff --git a/src/views/system/login-log/detail.vue b/src/views/system/login-log/detail.vue
index fedbb8ca..f8890f5b 100644
--- a/src/views/system/login-log/detail.vue
+++ b/src/views/system/login-log/detail.vue
@@ -49,6 +49,8 @@ export default {
title: this.$t('system:loginLog:dialog:title'),
width: '500px',
top: '10vh',
+ appendToBody: true,
+ bodyStyle: `min-height: 100px; max-height: 650px;overflow-y: auto;padding: 10px;border: 1px solid #e0e0e0;`,
}
},
},
@@ -86,4 +88,9 @@ export default {
},
},
}
-
\ No newline at end of file
+
+
\ No newline at end of file
From 75f3b37c05226ded9c956e17bfce5c810e9d4b7f Mon Sep 17 00:00:00 2001
From: wangxiaoshuang <825034831@qq.com>
Date: Mon, 30 Dec 2024 13:18:19 +0800
Subject: [PATCH 11/15] =?UTF-8?q?=E4=BB=B2=E8=A3=81=E8=A7=84=E5=88=99?=
=?UTF-8?q?=E9=85=8D=E7=BD=AE=E9=9C=80=E8=A6=81=E8=B0=83=E6=95=B4?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../reading-unit/components/ArbitrationRules.vue | 10 ++++------
1 file changed, 4 insertions(+), 6 deletions(-)
diff --git a/src/views/trials/trials-panel/setting/reading-unit/components/ArbitrationRules.vue b/src/views/trials/trials-panel/setting/reading-unit/components/ArbitrationRules.vue
index 75a91c56..8611acdd 100644
--- a/src/views/trials/trials-panel/setting/reading-unit/components/ArbitrationRules.vue
+++ b/src/views/trials/trials-panel/setting/reading-unit/components/ArbitrationRules.vue
@@ -72,12 +72,10 @@
"
:label="item.value"
v-if="
- (JudgyInfo.ArbitrationRule === 1 &&
- (item.value < 4 ||
- (item.value > 3 &&
- (QuestionList[index].Type === 'number' ||
- QuestionList[index].Type === 'calculation')))) ||
- (JudgyInfo.ArbitrationRule === 2 && item.value < 4)
+ item.value < 4 ||
+ (item.value > 3 &&
+ (QuestionList[index].Type === 'number' ||
+ QuestionList[index].Type === 'calculation'))
"
>
{{ item.label }}
From a78d848424a03cbf2ff7bd04988a89adfdc0e305 Mon Sep 17 00:00:00 2001
From: wangxiaoshuang <825034831@qq.com>
Date: Mon, 30 Dec 2024 13:30:10 +0800
Subject: [PATCH 12/15] =?UTF-8?q?=E7=AE=A1=E7=90=86=E7=AB=AF=E7=94=A8?=
=?UTF-8?q?=E6=88=B7=E5=88=87=E6=8D=A2=E8=A7=92=E8=89=B2?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/layout/components/Navbar.vue | 123 +++++++++++++++++++++++++++----
1 file changed, 107 insertions(+), 16 deletions(-)
diff --git a/src/layout/components/Navbar.vue b/src/layout/components/Navbar.vue
index 49442e19..1800836a 100644
--- a/src/layout/components/Navbar.vue
+++ b/src/layout/components/Navbar.vue
@@ -14,13 +14,13 @@