From 7bb7fecb7a1fbf1059a07e365224c3f38634afdf Mon Sep 17 00:00:00 2001 From: guoapeng Date: Mon, 24 Mar 2025 14:42:11 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E5=96=B7=E6=B6=82=E7=94=BB=E5=B8=83?= =?UTF-8?q?=E5=88=BB=E5=BA=A6=E7=BA=BF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/spray/trayGraph/index.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/spray/trayGraph/index.vue b/src/components/spray/trayGraph/index.vue index d7f6599..2a23079 100644 --- a/src/components/spray/trayGraph/index.vue +++ b/src/components/spray/trayGraph/index.vue @@ -107,6 +107,7 @@ const addGuideLine = () => { layer.value.add( new Konva.Line({ points: [i, 0, i, stage.value.height()], + // stroke: [50, 100].includes(i) ? '#54FF9F' : '#ddd', stroke: '#ddd', strokeWidth: 1, listening: false, @@ -117,7 +118,7 @@ const addGuideLine = () => { layer.value.add( new Konva.Line({ points: [0, j, stage.value.width(), j], - stroke: '#ddd', + stroke: [50, 100, 150, 200, 250, 300].includes(j) ? '#54FF9F' : '#ddd', strokeWidth: 1, listening: false, }),