chore: 隐藏'菜单加载中'

This commit is contained in:
dap 2024-12-16 13:53:58 +08:00
parent 63429789ea
commit 993ac11eb6

View File

@ -51,6 +51,19 @@ onMounted(async () => {
<template>
<Card>
<div id="leave-form">
<BasicForm />
</div>
</Card>
</template>
<style lang="scss">
/**
去除 '菜单加载中' 主要是iframe内嵌使用
*/
html:has(#leave-form) {
.ant-message-notice-content:has(.ant-message-loading) {
display: none;
}
}
</style>