From e9a5bbe0a13a0e320e5141a615e0c39d3ee174da Mon Sep 17 00:00:00 2001 From: fit2cloud-chenyw Date: Thu, 23 Nov 2023 22:14:37 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=9C=B0=E7=90=86=E4=BF=A1=E6=81=AF?= =?UTF-8?q?=E6=96=87=E4=BB=B6=E4=B8=8A=E4=BC=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/core-frontend/src/assets/svg/de-json.svg | 1 + .../views/system/parameter/map/Geometry.vue | 11 +- .../system/parameter/map/GeometryEdit.vue | 240 ++++++++++++++++++ .../views/system/parameter/map/interface.ts | 5 + 4 files changed, 255 insertions(+), 2 deletions(-) create mode 100644 core/core-frontend/src/assets/svg/de-json.svg create mode 100644 core/core-frontend/src/views/system/parameter/map/GeometryEdit.vue create mode 100644 core/core-frontend/src/views/system/parameter/map/interface.ts diff --git a/core/core-frontend/src/assets/svg/de-json.svg b/core/core-frontend/src/assets/svg/de-json.svg new file mode 100644 index 0000000000..9e62a6c556 --- /dev/null +++ b/core/core-frontend/src/assets/svg/de-json.svg @@ -0,0 +1 @@ + \ No newline at end of file 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 47c21db890..68768887d2 100644 --- a/core/core-frontend/src/views/system/parameter/map/Geometry.vue +++ b/core/core-frontend/src/views/system/parameter/map/Geometry.vue @@ -3,7 +3,7 @@
{{ t('online_map.geometry') }} - + @@ -83,6 +83,7 @@
+ @@ -158,7 +165,7 @@ loadTreeData() line-height: 24px; } .add-icon-span { - display: none; + // display: none; color: #3370ff; height: 20px; width: 20px; diff --git a/core/core-frontend/src/views/system/parameter/map/GeometryEdit.vue b/core/core-frontend/src/views/system/parameter/map/GeometryEdit.vue new file mode 100644 index 0000000000..cb4d663e2f --- /dev/null +++ b/core/core-frontend/src/views/system/parameter/map/GeometryEdit.vue @@ -0,0 +1,240 @@ + + + + + diff --git a/core/core-frontend/src/views/system/parameter/map/interface.ts b/core/core-frontend/src/views/system/parameter/map/interface.ts new file mode 100644 index 0000000000..1600eae66d --- /dev/null +++ b/core/core-frontend/src/views/system/parameter/map/interface.ts @@ -0,0 +1,5 @@ +export interface GeometryFrom { + pid?: string + code?: string + name?: string +}