Files
wms1.0/wms_pro/qd/src/App.vue

24 lines
386 B
Vue
Raw Normal View History

2024-02-02 17:54:37 +08:00
<template>
<div id="app">
<router-view />
</div>
</template>
<script>
export default {
name: 'App'
}
</script>
2024-04-02 11:08:56 +08:00
<style>
/* 提高 <el-dialog> 和 <el-drawer> 的 z-index */
.el-dialog__wrapper, .el-drawer__wrapper {
z-index: 2002 !important;
}
/* 如果需要,也可以提高遮罩层的 z-index但通常不必要 */
.v-modal {
z-index: 2001 !important;
}
</style>