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 } }