From 832a23b61d52a191db3979ca696350261cb76b46 Mon Sep 17 00:00:00 2001 From: zqm Date: Mon, 20 Oct 2025 11:06:42 +0800 Subject: [PATCH] =?UTF-8?q?=E7=A7=BB=E9=99=A4dockPanelStore.js=E4=B8=AD?= =?UTF-8?q?=E5=8F=B3=E4=BE=A7=E5=92=8C=E5=BA=95=E9=83=A8=E9=9D=A2=E6=9D=BF?= =?UTF-8?q?=E7=9A=84=E6=97=A5=E5=BF=97=E8=AF=AD=E5=8F=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- AutoRobot/Windows/Robot/Web/src/store/dockPanelStore.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/AutoRobot/Windows/Robot/Web/src/store/dockPanelStore.js b/AutoRobot/Windows/Robot/Web/src/store/dockPanelStore.js index a1e0e51..f692ebb 100644 --- a/AutoRobot/Windows/Robot/Web/src/store/dockPanelStore.js +++ b/AutoRobot/Windows/Robot/Web/src/store/dockPanelStore.js @@ -959,12 +959,11 @@ export const useDockPanelStore = defineStore('dockPanel', () => { case 'left': newSize = layoutCoordinator.adjustRegionSize('left', panelAreas.left.width, delta) panelAreas.left.width = newSize - console.log('dockPanelStore - 左侧面板宽度更新为:', panelAreas.left.width) + break case 'right': newSize = layoutCoordinator.adjustRegionSize('right', panelAreas.right.width, -delta) panelAreas.right.width = newSize - console.log('dockPanelStore - 右侧面板宽度更新为:', panelAreas.right.width) break case 'top': newSize = layoutCoordinator.adjustRegionSize('top', panelAreas.top.height, delta, panelAreas, containerHeight) @@ -974,7 +973,6 @@ export const useDockPanelStore = defineStore('dockPanel', () => { case 'bottom': newSize = layoutCoordinator.adjustRegionSize('bottom', panelAreas.bottom.height, -delta, panelAreas, containerHeight) panelAreas.bottom.height = newSize - console.log('dockPanelStore - 底部面板高度更新为:', panelAreas.bottom.height) break } }