From 08b5f6a844ccd319e90849c5427d38e65ff9a1ed Mon Sep 17 00:00:00 2001 From: edgarhrh <77600139+edgarhrh@users.noreply.github.com> Date: Fri, 31 May 2024 10:09:07 +0800 Subject: [PATCH] =?UTF-8?q?=E5=9C=B0=E5=9B=BE=E7=AE=A1=E7=90=86=E7=95=8C?= =?UTF-8?q?=E9=9D=A2=E5=AE=9E=E7=8E=B0=E5=9C=B0=E5=9B=BE=E5=8A=A0=E8=BD=BD?= =?UTF-8?q?=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/system/mapManagement/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/system/mapManagement/index.vue b/src/views/system/mapManagement/index.vue index 535afcf..b47fac7 100644 --- a/src/views/system/mapManagement/index.vue +++ b/src/views/system/mapManagement/index.vue @@ -72,7 +72,7 @@ const draw = () => { for (let i = 0; i < normalPosList.length; i += 3) { const x = normalPosList[i].x * mapCanvas.widthScale; const y = normalPosList[i].y * mapCanvas.heightScale; - const circle = drawCircle(x, y, 2, '#c7d4ca'); + const circle = drawCircle(x, y, 2, '#D5D8DC'); mapCanvas.layer.add(circle); } }