From 23dfe4ab7fa7e665a3b1dccba00f01fc8e27a387 Mon Sep 17 00:00:00 2001
From: wangjiahao <1522128093@qq.com>
Date: Tue, 16 Jan 2024 09:40:25 +0800
Subject: [PATCH] =?UTF-8?q?refactor(=E6=95=B0=E6=8D=AE=E5=A4=A7=E5=B1=8F):?=
=?UTF-8?q?=20=E5=A4=A7=E5=B1=8F=E4=BD=8D=E7=BD=AE=E5=AE=9A=E4=BD=8D?=
=?UTF-8?q?=E6=95=B0=E6=8D=AE=E5=8F=98=E6=9B=B4=E4=B8=BA=E5=B1=95=E7=A4=BA?=
=?UTF-8?q?=E5=8E=9F=E5=A7=8B=E6=95=B0=E6=8D=AE=E4=B8=8D=E5=86=8D=E9=9A=8F?=
=?UTF-8?q?=E7=BC=A9=E6=94=BE=E6=94=B9=E5=8F=98?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
core/core-backend/pom.xml | 10 +++++
.../common/ComponentPosition.vue | 40 ++++++++++++++++---
2 files changed, 45 insertions(+), 5 deletions(-)
diff --git a/core/core-backend/pom.xml b/core/core-backend/pom.xml
index 1e43ec1d51..a37a5973f0 100644
--- a/core/core-backend/pom.xml
+++ b/core/core-backend/pom.xml
@@ -96,6 +96,16 @@
com.h2database
h2
+
+ io.dataease
+ xpack-permissions
+ ${project.version}
+
+
+ io.dataease
+ xpack-base
+ ${project.version}
+
diff --git a/core/core-frontend/src/components/visualization/common/ComponentPosition.vue b/core/core-frontend/src/components/visualization/common/ComponentPosition.vue
index 981fd92741..6e8ea71237 100644
--- a/core/core-frontend/src/components/visualization/common/ComponentPosition.vue
+++ b/core/core-frontend/src/components/visualization/common/ComponentPosition.vue
@@ -10,8 +10,8 @@
:min="min"
:max="max"
:step="step"
- v-model="curComponent.style[key]"
- @change="onPositionChange"
+ v-model="positionMounted[key]"
+ @change="onPositionChange(key)"
controls-position="right"
/>
@@ -21,7 +21,7 @@