diff --git a/AutoRobot/Windows/Robot/Web/src/components/LayoutCoordinator.js b/AutoRobot/Windows/Robot/Web/src/components/LayoutCoordinator.js index 8907904..7c2d2fd 100644 --- a/AutoRobot/Windows/Robot/Web/src/components/LayoutCoordinator.js +++ b/AutoRobot/Windows/Robot/Web/src/components/LayoutCoordinator.js @@ -221,18 +221,20 @@ export class LayoutCoordinator { // 影响数组:当某个面板大小变化时,会影响哪些其他面板 influence: { left: [ - { position: 'center', property: 'width', influence: true } + { position: 'top', property: 'width', influence: true }, + { position: 'center', property: 'width', influence: true }, + { position: 'bottom', property: 'width', influence: true } ], right: [ - { position: 'center', property: 'width', influence: true } + { position: 'top', property: 'width', influence: true }, + { position: 'center', property: 'width', influence: true }, + { position: 'bottom', property: 'width', influence: true } ], top: [ - { position: 'center', property: 'height', influence: true }, - { position: 'right', property: 'height', influence: true } + { position: 'center', property: 'height', influence: true } ], bottom: [ - { position: 'center', property: 'height', influence: true }, - { position: 'right', property: 'height', influence: true } + { position: 'center', property: 'height', influence: true } ], center: [] },