公共配置
都位于common目录下:
- 公共类型
common/type/index.uts公共类型 - 公共样式
common/common.css
已经在App.uvue中引入
<style>
/*每个页面公共css */
@import "./common/uni.css";
@import "./common/common.css";
/* #ifdef WEB */
.uni-top-window uni-tabbar .uni-tabbar {
background-color: #fff !important;
}
/* #endif */
/* #ifdef MP-WEIXIN */
page {
background-color: #efeff4;
}
/* #endif */
</style>

