From 6bd987f6e64c912fbf9abaefb07c3d0a377ba327 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BB=95=E5=B5=A9?= <17854119262@163.com> Date: Wed, 31 Jul 2024 09:20:22 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E5=9B=BE=E6=96=91=E6=B1=87=E6=80=BB?= =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E6=9D=91=E5=90=8D=E5=B1=95=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../patchsummary/patchsummary.data.ts | 4 ++ src/views/sys/exception/Exception.vue | 52 ++++++++++++++----- 2 files changed, 43 insertions(+), 13 deletions(-) diff --git a/src/views/demo/statistical/patchsummary/patchsummary.data.ts b/src/views/demo/statistical/patchsummary/patchsummary.data.ts index 52e78482..c5aa7b5c 100644 --- a/src/views/demo/statistical/patchsummary/patchsummary.data.ts +++ b/src/views/demo/statistical/patchsummary/patchsummary.data.ts @@ -34,6 +34,10 @@ export const columns: BasicColumn[] = [ title: '乡镇', dataIndex: 'streetname', }, + { + title: '社区/村', + dataIndex: 'communityname', + }, { title: '图斑编号', dataIndex: 'caseno', diff --git a/src/views/sys/exception/Exception.vue b/src/views/sys/exception/Exception.vue index b1ebcd70..c6652beb 100644 --- a/src/views/sys/exception/Exception.vue +++ b/src/views/sys/exception/Exception.vue @@ -54,14 +54,15 @@ From a1f0d2ae0d1a1355dddeff1a96e25d2e981a1730 Mon Sep 17 00:00:00 2001 From: Zhufu <1176354795@qq.com> Date: Wed, 31 Jul 2024 09:58:30 +0800 Subject: [PATCH 2/2] =?UTF-8?q?=E4=BA=91=E6=9F=A5=E8=AF=A2=E5=85=A5?= =?UTF-8?q?=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/MapboxMaps/MapComponent.vue | 41 ++++++++++++++++++- .../MapList/ShowInfoModal/index.vue | 4 ++ .../MapList/SplitPolygonModal/index.vue | 4 ++ .../demo/workflow/task/process/audit.vue | 4 ++ 4 files changed, 51 insertions(+), 2 deletions(-) diff --git a/src/components/MapboxMaps/MapComponent.vue b/src/components/MapboxMaps/MapComponent.vue index 2dd4f92a..8831ae55 100644 --- a/src/components/MapboxMaps/MapComponent.vue +++ b/src/components/MapboxMaps/MapComponent.vue @@ -2,7 +2,14 @@
- +
+
+
+ +
+
云查询
+
+
@@ -92,6 +99,7 @@ import { useMessage } from '@/hooks/web/useMessage'; import {CloseOutlined,EnvironmentOutlined,DeleteOutlined,CopyOutlined,PlusOutlined,ClearOutlined,SplitCellsOutlined} from "@ant-design/icons-vue" import mapboxgl,{ Map, Popup } from 'mapbox-gl'; + import Icon from '@/components/Icon/Icon.vue'; // 图形绘制工具类 import MapboxDraw from '@mapbox/mapbox-gl-draw'; @@ -178,7 +186,11 @@ splitPlugin:{ type:Boolean, default:false, - } + }, + geomsList:{ + type:Array, + default:null, + }, }); let nextMapControl: Array = reactive([]); @@ -1222,6 +1234,9 @@ const handlerLocationDrawPolygon = ()=>{ } + const initiateCloudQuery = () => { + console.log('aaa props.geomsList',props.geomsList) + } defineExpose({ @@ -1233,6 +1248,28 @@