From 32df66438e269f045394531882f938ac2bc02630 Mon Sep 17 00:00:00 2001 From: dataeaseShu Date: Fri, 29 Dec 2023 10:50:54 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E3=80=90=E7=B3=BB=E7=BB=9F=E8=AE=BE?= =?UTF-8?q?=E7=BD=AE=E3=80=91-=E6=9F=A5=E7=9C=8B=E4=B8=96=E7=95=8C?= =?UTF-8?q?=E6=9D=91=E5=9C=B0=E5=9B=BE=E6=95=B0=E6=8D=AE=EF=BC=8C=E5=8A=A0?= =?UTF-8?q?=E8=BD=BD=E6=97=B6=E9=97=B4=E8=BF=87=E9=95=BF=EF=BC=8C=E5=8F=AF?= =?UTF-8?q?=E8=83=BD=E5=AF=BC=E8=87=B4=E6=B5=8F=E8=A7=88=E5=99=A8=E5=B4=A9?= =?UTF-8?q?=E6=BA=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/core-frontend/src/views/system/parameter/map/Geometry.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/core-frontend/src/views/system/parameter/map/Geometry.vue b/core/core-frontend/src/views/system/parameter/map/Geometry.vue index 0c899a1066..276b2711d2 100644 --- a/core/core-frontend/src/views/system/parameter/map/Geometry.vue +++ b/core/core-frontend/src/views/system/parameter/map/Geometry.vue @@ -128,7 +128,7 @@ const selectedData = ref(null) const handleNodeClick = async (data: Tree) => { selectedData.value = data const geoJson = cloneDeep(await getGeoJsonFile(data['id'])) - selectedData.value['geoJson'] = geoJson + selectedData.value['geoJson'] = JSON.stringify(geoJson) const pid = data['pid'] if (pid) { const parent = areaTreeRef.value.getNode(pid)