chore: 修改zIndex
This commit is contained in:
parent
256a29dae1
commit
02fba565e0
@ -18,7 +18,6 @@
|
||||
|
||||
- 字典项为空时getDict方法无限调用接口(无奈兼容 不给字典item本来就是错误用法)
|
||||
- 表格排序翻页会丢失排序参数
|
||||
- 修改Vxe默认zIndex为995 解决右上角全屏后modal/drawer(zIndex: 1000)被遮挡
|
||||
|
||||
**OTHERS**
|
||||
|
||||
|
@ -13,14 +13,6 @@ import { useVbenForm } from './form';
|
||||
setupVbenVxeTable({
|
||||
configVxeTable: (vxeUI) => {
|
||||
vxeUI.setConfig({
|
||||
/**
|
||||
* @see https://vxetable.cn/#/start/z-index
|
||||
* 设置Vxe全局的zIndex
|
||||
* 点击右上角全屏zIndex为1003 modal/drawer的zIndex为1000 新增/编辑表单会造成遮挡
|
||||
* 在这里修改为<1000即可解决遮挡问题
|
||||
* 全屏为995+3=998 全屏会增加3
|
||||
*/
|
||||
zIndex: 995,
|
||||
grid: {
|
||||
align: 'center',
|
||||
border: false,
|
||||
|
@ -44,7 +44,12 @@ export function useFullScreenGuide() {
|
||||
inheritAttrs: false,
|
||||
setup() {
|
||||
return () => (
|
||||
<Tour onClose={closeGuide} open={open.value} steps={steps} />
|
||||
<Tour
|
||||
onClose={closeGuide}
|
||||
open={open.value}
|
||||
steps={steps}
|
||||
zIndex={9999}
|
||||
/>
|
||||
);
|
||||
},
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user