28 lines
501 B
Vue
28 lines
501 B
Vue
<template>
|
|
<router-view />
|
|
</template>
|
|
<script setup lang="ts"></script>
|
|
|
|
<style>
|
|
#app {
|
|
font-family: Avenir, Helvetica, Arial, sans-serif;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
color: #2c3e50;
|
|
}
|
|
/* 确保弹窗在最上层 */
|
|
.van-overlay {
|
|
z-index: 2000 !important;
|
|
}
|
|
|
|
.van-dialog {
|
|
z-index: 2001 !important;
|
|
}
|
|
|
|
/* 修复可能被隐藏的问题 */
|
|
.van-toast,
|
|
.van-notify {
|
|
z-index: 2002 !important;
|
|
}
|
|
</style>
|