From 7057df6b2cd5b50d18cc96d43e1ea7a61ea8c3a2 Mon Sep 17 00:00:00 2001 From: jianneng-fit2cloud Date: Fri, 14 Mar 2025 18:06:58 +0800 Subject: [PATCH] =?UTF-8?q?style(=E5=9B=BE=E8=A1=A8):=20=E4=BC=98=E5=8C=96?= =?UTF-8?q?=E5=9B=BE=E8=A1=A8=E9=AB=98=E7=BA=A7-=E9=98=88=E5=80=BC?= =?UTF-8?q?=E5=91=8A=E8=AD=A6=E6=A0=B7=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../editor/editor-senior/Senior.vue | 22 +++++++++++++------ 1 file changed, 15 insertions(+), 7 deletions(-) diff --git a/core/core-frontend/src/views/chart/components/editor/editor-senior/Senior.vue b/core/core-frontend/src/views/chart/components/editor/editor-senior/Senior.vue index 4654ad21dd..510207bd24 100644 --- a/core/core-frontend/src/views/chart/components/editor/editor-senior/Senior.vue +++ b/core/core-frontend/src/views/chart/components/editor/editor-senior/Senior.vue @@ -9,7 +9,7 @@ import Threshold from '@/views/chart/components/editor/editor-senior/components/ import MapMapping from '@/views/chart/components/editor/editor-senior/components/MapMapping.vue' import CollapseSwitchItem from '@/components/collapse-switch-item/src/CollapseSwitchItem.vue' import { useAppStoreWithOut } from '@/store/modules/app' -import { computed, PropType, ref, toRefs, watch } from 'vue' +import { computed, onMounted, PropType, ref, toRefs, watch } from 'vue' import LinkJumpSet from '@/components/visualization/LinkJumpSet.vue' import LinkageSet from '@/components/visualization/LinkageSet.vue' import { canvasSave } from '@/utils/canvasUtils' @@ -239,6 +239,19 @@ const removeJumpSenior = () => { }) }) } +const styleCollapseEnd = ref(null) + +onMounted(() => { + if (styleCollapseEnd.value) { + const newDiv = document.createElement('div') + newDiv.innerHTML = `
+
+
+
+
` + styleCollapseEnd.value.appendChild(newDiv) + } +})