From c769deba5c18b28da003bc3a6078bf3337f672c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=A5=94=E8=B7=91=E7=9A=84=E9=9D=A2=E6=9D=A1?= <1262327911@qq.com> Date: Mon, 31 Jul 2023 15:45:43 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E5=88=9B=E5=BB=BA?= =?UTF-8?q?=E5=88=86=E7=BB=84=E6=8E=92=E5=BA=8F=E4=BC=9A=E9=94=99=E8=AF=AF?= =?UTF-8?q?=E7=9A=84bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/store/modules/chartEditStore/chartEditStore.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/store/modules/chartEditStore/chartEditStore.ts b/src/store/modules/chartEditStore/chartEditStore.ts index 88179263..91156ac3 100644 --- a/src/store/modules/chartEditStore/chartEditStore.ts +++ b/src/store/modules/chartEditStore/chartEditStore.ts @@ -614,7 +614,7 @@ export const useChartEditStore = defineStore({ } else { const group = historyData[0] as CreateComponentGroupType group.groupList.forEach(item => { - ids.push(item.id) + ids.unshift(item.id) }) } this.setGroup(ids, false) @@ -763,7 +763,7 @@ export const useChartEditStore = defineStore({ // 高 groupAttr.b = b < y + h ? y + h : b - targetList.push(item) + targetList.unshift(item) historyList.push(toRaw(item)) }) @@ -809,7 +809,7 @@ export const useChartEditStore = defineStore({ if (isHistory) chartHistoryStore.createUnGroupHistory(cloneDeep([targetGroup])) // 分离组件并还原位置属性 - targetGroup.groupList.forEach(item => { + targetGroup.groupList.reverse().forEach(item => { item.attr.x = item.attr.x + targetGroup.attr.x item.attr.y = item.attr.y + targetGroup.attr.y if (!callBack) {