From d86304bb41fac6fdbf190062049d61e9e167fcad Mon Sep 17 00:00:00 2001 From: taohebin Date: Sun, 29 Sep 2024 16:55:47 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=9C=B0=E5=9B=BE=E5=88=A0=E9=99=A4?= =?UTF-8?q?=E5=9C=86=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/component/map/map.uvue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/component/map/map.uvue b/pages/component/map/map.uvue index 9a33c06f..075912e5 100644 --- a/pages/component/map/map.uvue +++ b/pages/component/map/map.uvue @@ -453,7 +453,7 @@ }; const removeCircle = () => { if (circles.value.length > 1) { - circles.value = JSON.parse(JSON.stringify(testCircles))!.splice(0, 1); + circles.value = JSON.parse(JSON.stringify(testCircles))!.slice(1); } }; -- GitLab