调整浮动区域z-index值:将非最大化和最大化状态下的z-index均从10/100提高到1000,确保浮动区域始终显示在顶层
This commit is contained in:
@@ -22,7 +22,7 @@
|
||||
:top="area.WindowState !== '最大化' ? area.y : undefined"
|
||||
:style="area.WindowState !== '最大化' ? {
|
||||
position: 'absolute',
|
||||
zIndex: 10,
|
||||
zIndex: 1000,
|
||||
background: 'rgba(255, 255, 255, 1)',
|
||||
border: '1px solid #4f72b3'
|
||||
} : {
|
||||
@@ -31,7 +31,7 @@
|
||||
left: 0,
|
||||
width: '100%',
|
||||
height: '100%',
|
||||
zIndex: 100
|
||||
zIndex: 1000
|
||||
}"
|
||||
@close="onCloseFloatingArea(area.id)"
|
||||
@update:position="onUpdatePosition(area.id, $event)"
|
||||
|
||||
Reference in New Issue
Block a user