From 00c4499ea8298f8928990c786b3454387136f1d9 Mon Sep 17 00:00:00 2001 From: wisonic Date: Tue, 24 Dec 2024 15:01:29 +0800 Subject: [PATCH] =?UTF-8?q?refactor(=E5=9B=BE=E8=A1=A8):=20=E8=87=AA?= =?UTF-8?q?=E5=AE=9A=E4=B9=89=E5=8C=BA=E5=9F=9F=E5=88=A0=E9=99=A4=E7=A1=AE?= =?UTF-8?q?=E8=AE=A4=E6=A1=86=E6=A0=B7=E5=BC=8F=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/views/system/parameter/map/Geometry.vue | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) 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 5704ba6944..bb2de92b76 100644 --- a/core/core-frontend/src/views/system/parameter/map/Geometry.vue +++ b/core/core-frontend/src/views/system/parameter/map/Geometry.vue @@ -436,7 +436,8 @@ const deleteCustomArea = data => { confirmButtonType: 'danger', customClass: 'area-delete-dialog', autofocus: false, - confirmButtonText: t('common.delete') + confirmButtonText: t('common.delete'), + showClose: false }) .then(async () => { await deleteCustomGeoArea(data.id) @@ -554,7 +555,8 @@ const deleteCustomSubArea = async data => { confirmButtonType: 'danger', customClass: 'area-delete-dialog', autofocus: false, - confirmButtonText: t('common.delete') + confirmButtonText: t('common.delete'), + showClose: false }) .then(async () => { await deleteCustomGeoSubArea(data.id) @@ -920,7 +922,7 @@ onBeforeMount(() => { } .area-delete-dialog { - padding: 10px; + padding: 24px; .ed-message-box__header { display: flex; justify-content: space-between;