This commit is contained in:
王鹏
2025-08-14 14:49:25 +08:00
commit 87b1e850ae
344 changed files with 50287 additions and 0 deletions

33
App.vue Normal file
View File

@@ -0,0 +1,33 @@
<script>
import config from './config'
import store from '@/store'
import { getToken } from '@/utils/auth'
export default {
onLaunch: function() {
this.initApp()
},
methods: {
// 初始化应用
initApp() {
// 初始化应用配置
this.initConfig()
// 检查用户登录状态
//#ifdef H5
//#endif
},
initConfig() {
this.globalData.config = config
}
}
}
</script>
<style lang="scss">
@import '@/static/scss/index.scss';
@import "colorui/main.css";
@import "colorui/icon.css";
/* #ifdef H5 */
uni-page-head { display: none; }
/* #endif */
</style>