From a0b39e7a0b5dcf0209af24204c567188d10fc6ba Mon Sep 17 00:00:00 2001 From: wangxiaoshuang <825034831@qq.com> Date: Tue, 6 Jan 2026 11:06:11 +0800 Subject: [PATCH 1/5] =?UTF-8?q?=E9=A1=B9=E7=9B=AE=E6=8A=A5=E8=A1=A8?= =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../trial-summary/report-forms/index.vue | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/src/views/trials/trials-panel/trial-summary/report-forms/index.vue b/src/views/trials/trials-panel/trial-summary/report-forms/index.vue index 6067ae71..16967b88 100644 --- a/src/views/trials/trials-panel/trial-summary/report-forms/index.vue +++ b/src/views/trials/trials-panel/trial-summary/report-forms/index.vue @@ -267,7 +267,7 @@ export default { label: { show: true, formatter: `{c}`, - position: 'inside', + position: 'top', textStyle: { fontSize: 14, // 设置字体大小为 14px color: '#000', // 设置字体颜色为白色 @@ -356,6 +356,7 @@ export default { } this.loading_bottom = true let res = await getTrialEfficacyEvaluationStatList(data) + if (data.TrialReadingCriterionId !== this.searchData.TrialReadingCriterionId) return false this.loading_bottom = false if (res.IsSuccess) { let OtherInfo = res.OtherInfo || {} @@ -434,7 +435,8 @@ export default { }, yAxis: { name: obj.unit, - type: 'value' + type: 'value', + minInterval: 1 }, series: [ { @@ -444,7 +446,7 @@ export default { label: { show: true, formatter: `{c}`, - position: 'inside', + position: 'top', textStyle: { fontSize: 14, // 设置字体大小为 14px color: '#000', // 设置字体颜色为白色 @@ -494,7 +496,7 @@ export default { label: { show: true, formatter: `{c}%`, - position: 'inside', + position: 'top', textStyle: { fontSize: 14, // 设置字体大小为 14px color: '#000', // 设置字体颜色为白色 @@ -560,7 +562,7 @@ export default { label: { show: true, formatter: `{c}`, - position: 'inside', + position: 'top', textStyle: { fontSize: 14, // 设置字体大小为 14px color: '#000', // 设置字体颜色为白色 From 98a3f9c5b5fbbb297e719b972912453f90be9c83 Mon Sep 17 00:00:00 2001 From: wangxiaoshuang <825034831@qq.com> Date: Tue, 6 Jan 2026 13:36:38 +0800 Subject: [PATCH 2/5] =?UTF-8?q?=E5=8F=97=E8=AF=95=E8=80=85=E5=9B=BE?= =?UTF-8?q?=E8=A1=A8=E5=8F=AA=E6=98=BE=E7=A4=BA=E8=82=BF=E7=98=A4=E6=A0=87?= =?UTF-8?q?=E5=87=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../subject/subject-list/components/SubjectChart.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/trials/trials-panel/subject/subject-list/components/SubjectChart.vue b/src/views/trials/trials-panel/subject/subject-list/components/SubjectChart.vue index c3f5dd55..1886d1b1 100644 --- a/src/views/trials/trials-panel/subject/subject-list/components/SubjectChart.vue +++ b/src/views/trials/trials-panel/subject/subject-list/components/SubjectChart.vue @@ -91,7 +91,7 @@ export default { getTrialCriterionList() { this.loading = true getTrialCriterionList(this.$route.query.trialId, false).then(res => { - this.trialCriterionList = res.Result + this.trialCriterionList = res.Result.filter(item => [1, 18, 2, 3, 7, 10, 17].includes(Number(item.CriterionType))) if (this.trialCriterionList.length > 0) { this.TrialReadingCriterionId = this.trialCriterionList[0].TrialReadingCriterionId this.getList() From ef08a5277d6fb37bec03654c0533fa2a7e80887c Mon Sep 17 00:00:00 2001 From: wangxiaoshuang <825034831@qq.com> Date: Tue, 6 Jan 2026 13:46:30 +0800 Subject: [PATCH 3/5] 1 --- .../reading-period/components/ClinicalData.vue | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/views/trials/trials-panel/subject/reading-period/components/ClinicalData.vue b/src/views/trials/trials-panel/subject/reading-period/components/ClinicalData.vue index ffb5842e..317fc1d9 100644 --- a/src/views/trials/trials-panel/subject/reading-period/components/ClinicalData.vue +++ b/src/views/trials/trials-panel/subject/reading-period/components/ClinicalData.vue @@ -36,8 +36,8 @@ hasPermi(['trials:trials-panel:subject:readingPeriod:edit']) && clinicalType === '1' && type !== 'consistencyAnalysis' - " type="primary" icon="el-icon-download" size="small" :disabled="clinicalDatas.length <= 0" - @click="downLoadTemplate"> + " type="primary" icon="el-icon-download" size="small" + :disabled="clinicalDatas.filter(item => item.Path).length <= 0" @click="downLoadTemplate"> {{ $t('trials:readingPeriod:cd:title:downLoadTemplate') }} @@ -274,9 +274,9 @@ From 8d1d5cb43a7b5c0b203248a989c854f3a7e5b77f Mon Sep 17 00:00:00 2001 From: wangxiaoshuang <825034831@qq.com> Date: Wed, 7 Jan 2026 10:39:18 +0800 Subject: [PATCH 4/5] =?UTF-8?q?=E5=9B=BE=E5=83=8F=E4=B8=8D=E9=9C=80?= =?UTF-8?q?=E8=A6=81=E6=9F=A5=E7=9C=8B=E5=8E=9F=E5=A7=8B=E6=95=B0=E6=8D=AE?= =?UTF-8?q?=EF=BC=8C=E6=95=B0=E6=8D=AE=E6=98=BE=E7=A4=BA=E4=B8=8D=E5=AF=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../trial-summary/report-forms/index.vue | 22 +++++++++++++------ 1 file changed, 15 insertions(+), 7 deletions(-) diff --git a/src/views/trials/trials-panel/trial-summary/report-forms/index.vue b/src/views/trials/trials-panel/trial-summary/report-forms/index.vue index 16967b88..b9188783 100644 --- a/src/views/trials/trials-panel/trial-summary/report-forms/index.vue +++ b/src/views/trials/trials-panel/trial-summary/report-forms/index.vue @@ -179,14 +179,10 @@ export default { color: this.color, tooltip: { trigger: 'item', - formatter: `${obj.titleText}
{b} : {c}` + formatter: `{b} : {c}` }, toolbox: { - feature: { - dataView: { readOnly: false }, - restore: {}, - saveAsImage: {} - } + show: false }, legend: { data: obj.legendData, @@ -267,7 +263,7 @@ export default { label: { show: true, formatter: `{c}`, - position: 'top', + position: 'inside', textStyle: { fontSize: 14, // 设置字体大小为 14px color: '#000', // 设置字体颜色为白色 @@ -317,6 +313,9 @@ export default { title: { text: obj.titleText }, + toolbox: { + show: false + }, color: this.color, tooltip: { trigger: 'axis', @@ -422,6 +421,9 @@ export default { title: { text: obj.titleText }, + toolbox: { + show: false + }, color: this.color, tooltip: { trigger: 'axis', @@ -469,6 +471,9 @@ export default { title: { text: obj.titleText }, + toolbox: { + show: false + }, color: this.color, tooltip: { trigger: 'item', @@ -523,6 +528,9 @@ export default { title: { text: obj.titleText }, + toolbox: { + show: false + }, color: this.color, tooltip: { trigger: 'axis', From 47798750a4ab7216cdeb8a5a8138cfcaf5cfc5fc Mon Sep 17 00:00:00 2001 From: wangxiaoshuang <825034831@qq.com> Date: Wed, 7 Jan 2026 11:31:37 +0800 Subject: [PATCH 5/5] =?UTF-8?q?=E9=A1=B9=E7=9B=AE=E9=85=8D=E7=BD=AE?= =?UTF-8?q?=E4=B8=8D=E6=98=BE=E7=A4=BA=E5=9B=BE=E8=A1=A8=E5=90=8E=E5=8E=BB?= =?UTF-8?q?=E9=99=A4=E9=A1=B9=E7=9B=AE=E6=8A=A5=E8=A1=A8tab?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/TrialsTab/index.vue | 34 ++++++++++++++++++------------ 1 file changed, 21 insertions(+), 13 deletions(-) diff --git a/src/components/TrialsTab/index.vue b/src/components/TrialsTab/index.vue index deade4f8..2e642e08 100644 --- a/src/components/TrialsTab/index.vue +++ b/src/components/TrialsTab/index.vue @@ -2,19 +2,21 @@