一招解决Modal多个弹窗遮罩层颜色加深问题

问题背景:
在Modal触发多个弹窗时,遮罩层颜色加深,导致用户无法清晰地看到弹窗遮罩下面的内容。
在这里插入图片描述

这里用的是一个简易封装的组件,如果没有使用这种方式在每次打开弹窗前调用 dealMaskStyle 检查并处理样式就好

//获取页面所有的弹窗只留一个弹窗的遮罩,其他的都改成透明色
export function dealMaskStyle() {
  const maskList = document.getElementsByClassName('ant-modal-mask') as HTMLCollectionOf<HTMLElement>;
    let visibleMasks = Array.from(maskList).filter((item) => item.style.display !== 'none');
    if (visibleMasks.length > 1) {
        for (let i = 1; i < visibleMasks.length; i++) {
            visibleMasks[i].classList.add('nb666');
        }
    }
}

export function useDialog({ title } = {}) {
    const visible = ref(false);

    function openDialog() {
        visible.value = true;
        dealMaskStyle();
    }

    function closeDialog() {
        visible.value = false;
    }

    return {
        visible,
        title,
        openDialog,
        closeDialog,
    };
}

/*destroy-on-close 关闭时销毁 Modal 里的子元素*/
<template>
    <a-modal
        :class="['dialog', themeType]"
        v-model:visible="props.openVis"
        :title="props.title"
        :width="props.width"
        :maskClosable="true"
        @cancel="handleCancel"
        destroy-on-close
    >
        <slot name="container"></slot>
        <template #footer></template>
    </a-modal>
</template>

<script setup lang="ts">
    import { useTheme } from '/@/hooks/theme/useTheme.ts';
    import { nextTick } from 'vue';

    const emit = defineEmits(['close']);
    const props = defineProps({
        width: {
            type: String,
        },
        openVis: {
            type: Boolean,
        },
        title: {
            type: String,
        },
    });
    const { themeType } = useTheme();

    function handleCancel() {
        emit('close');
    }
</script>
.ant-modal-mask {
	background-color: #00000073 !important;
}

/* 为其他所有的 .ant-modal-mask 设置透明背景 */
.ant-modal-mask.nb666 {
	background-color: transparent !important;
}
要取消Element UI的弹窗遮罩层,可以使用`modal`属性并将其绑定为`false`。同时,确保`append-to-body`属性设置为`true`。这样,遮罩层就会被移除。例如: ```html <el-dialog :modal="false" append-to-body="true"> <!-- 弹窗内容 --> </el-dialog> ``` 另外,如果你想要在点击按钮时打开Dialog,并且去除遮罩层,可以使用以下代码: ```html <el-button type="text" @click="centerDialogVisible = true">点击打开 Dialog</el-button> <el-dialog title="dialog去掉遮罩层" v-model="centerDialogVisible" width="30%" center :modal="false" append-to-body="true"> <!-- 弹窗内容 --> <template #footer> <span class="dialog-footer"> <el-button type="primary" @click="centerDialogVisible = false">确定</el-button> </span> </template> </el-dialog> ``` 请注意,当`modal`的值为`false`时,一定要确保`append-to-body`属性为`true`。因为Dialog使用`position: relative`定位,当外层的遮罩层被移除时,Dialog会根据当前DOM上的祖先节点来定位,可能会导致定位问题。\[1\]\[2\]\[3\] #### 引用[.reference_title] - *1* *2* *3* [去除 element-ui 中 Dialog 对话框遮罩层的方法](https://blog.csdn.net/m0_47901007/article/details/122066901)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^insertT0,239^v3^insert_chatgpt"}} ] [.reference_item] [ .reference_list ]
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值