From 58b54a60bfc1838584c8ae4c0b95c39679f6d780 Mon Sep 17 00:00:00 2001 From: lzh Date: Sun, 1 Mar 2026 16:34:29 +0800 Subject: [PATCH] =?UTF-8?q?style(ops):=20=E4=B8=8A=E6=9C=88=E8=B6=8B?= =?UTF-8?q?=E5=8A=BF=E7=BA=BF=E6=94=B9=E5=9B=9E=E8=99=9A=E7=BA=BF=E5=B9=B6?= =?UTF-8?q?=E9=99=8D=E4=BD=8E=E9=80=8F=E6=98=8E=E5=BA=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 线条、圆点、面积填充整体降低 opacity,作为当月数据的淡色参考线。 Co-Authored-By: Claude Opus 4.6 --- .../src/views/ops/cleaning/work-order/dashboard/index.vue | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/apps/web-antd/src/views/ops/cleaning/work-order/dashboard/index.vue b/apps/web-antd/src/views/ops/cleaning/work-order/dashboard/index.vue index ff5dddca2..51947cd3c 100644 --- a/apps/web-antd/src/views/ops/cleaning/work-order/dashboard/index.vue +++ b/apps/web-antd/src/views/ops/cleaning/work-order/dashboard/index.vue @@ -248,8 +248,9 @@ function getTrendChartOptions(): ECOption { smooth: true, symbol: 'circle', symbolSize: 6, + lineStyle: { type: 'dashed', opacity: 0.6 }, areaStyle: { - opacity: 0.1, + opacity: 0.06, color: { type: 'linear', x: 0, y: 0, x2: 0, y2: 1, colorStops: [ @@ -260,7 +261,7 @@ function getTrendChartOptions(): ECOption { }, emphasis: { focus: 'series' }, data: monthly.lastMonth.createdData, - itemStyle: { color: '#52c41a' }, + itemStyle: { color: '#52c41a', opacity: 0.6 }, }, ], };