From c662e6cc3aa9def5a37141acc02d550caf57bd62 Mon Sep 17 00:00:00 2001 From: wangxiaoshuang <825034831@qq.com> Date: Mon, 5 Jan 2026 16:37:48 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A1=B9=E7=9B=AE=E6=8A=A5=E8=A1=A8PCWG3?= =?UTF-8?q?=E5=8E=BB=E9=99=A4ORR?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../trial-summary/report-forms/index.vue | 21 +++++++++++++++++-- 1 file changed, 19 insertions(+), 2 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 f7ddde6a..6067ae71 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 @@ -21,13 +21,13 @@
-
+
{{ $t("trials:reportForms:cjart:title:totleORR") }} {{ ORR }}
-
+
@@ -97,6 +97,14 @@ export default { } else { return false } + }, + isPCWG() { + let criterion = this.trialCriterionList.find(item => item.TrialReadingCriterionId === this.searchData.TrialReadingCriterionId) + if (criterion) { + return [10].includes(Number(criterion.CriterionType)) + } else { + return false + } } }, watch: { @@ -448,6 +456,9 @@ export default { }; // 4. 使用配置项渲染图表 this.chart_bottom.setOption(option); + this.$nextTick(() => { + this.chart_bottom.resize() + }) }, initChart_bottom_left(obj) { this.chart_bottom_left = echarts.init(this.$refs.chartContainer_bottom_left); @@ -499,6 +510,9 @@ export default { }; // 4. 使用配置项渲染图表 this.chart_bottom_left.setOption(option); + this.$nextTick(() => { + this.chart_bottom_left.resize() + }) }, initChart_bottom_right(obj) { this.chart_bottom_right = echarts.init(this.$refs.chartContainer_bottom_right); @@ -562,6 +576,9 @@ export default { }; // 4. 使用配置项渲染图表 this.chart_bottom_right.setOption(option); + this.$nextTick(() => { + this.chart_bottom_right.resize() + }) }, calculateMedian(numbers) { // 1. 创建副本并排序