From 796bfd2c98c6128c35fbd1665f8925ba275b0e2d 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: Thu, 13 Oct 2022 21:10:32 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E8=A7=A3=E5=86=B3=20=E5=88=86=E7=BB=84?= =?UTF-8?q?=E5=A4=8D=E5=88=B6=20id=20=E4=BC=9A=E9=87=8D=E5=A4=8D=E7=9A=84?= =?UTF-8?q?=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../modules/chartEditStore/chartEditStore.ts | 41 +++++++++---------- 1 file changed, 19 insertions(+), 22 deletions(-) diff --git a/src/store/modules/chartEditStore/chartEditStore.ts b/src/store/modules/chartEditStore/chartEditStore.ts index 505c56f3..ea1759a7 100644 --- a/src/store/modules/chartEditStore/chartEditStore.ts +++ b/src/store/modules/chartEditStore/chartEditStore.ts @@ -493,34 +493,31 @@ export const useChartEditStore = defineStore({ } const parseHandle = (e: CreateComponentType | CreateComponentGroupType) => { e = cloneDeep(e) - // 生成新 id - e.id = getUUID() e.attr.x = this.getMousePosition.x + 30 e.attr.y = this.getMousePosition.y + 30 + // 外层生成新 id + e.id = getUUID() + // 分组列表生成新 id + if (e.isGroup) { + (e as CreateComponentGroupType).groupList.forEach((item: CreateComponentType) => { + item.id = getUUID() + }) + } + return e } const isCut = recordCharts.type === HistoryActionTypeEnum.CUT + const targetList = Array.isArray(recordCharts.charts) ? recordCharts.charts : [ recordCharts.charts ] // 多项 - if (Array.isArray(recordCharts.charts)) { - recordCharts.charts.forEach((e: CreateComponentType) => { - this.addComponentList(parseHandle(e), undefined, true) - // 剪切需删除原数据 - if (isCut) { - this.setTargetSelectChart(e.id) - this.removeComponentList(undefined, true) - } - }) - if (isCut) this.setRecordChart(undefined) - loadingFinish() - return - } - // 单项 - this.addComponentList(parseHandle(recordCharts.charts), undefined, true) - if (isCut) { - this.setTargetSelectChart(recordCharts.charts.id) - this.removeComponentList() - this.setRecordChart(undefined) - } + targetList.forEach((e: CreateComponentType | CreateComponentGroupType) => { + this.addComponentList(parseHandle(e), undefined, true) + // 剪切需删除原数据 + if (isCut) { + this.setTargetSelectChart(e.id) + this.removeComponentList(undefined, true) + } + }) + if (isCut) this.setRecordChart(undefined) loadingFinish() } catch (value) { loadingError()