8 Star 38 Fork 66

MqttsNet / thinglinks-app

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
App.vue 647 Bytes
一键复制 编辑 原始数据 按行查看 历史
小南 提交于 2022-08-08 16:48 . sunshihuan
<script>
import config from './config'
import store from '@/store'
import { getToken } from '@/utils/auth'
export default {
onLaunch: function() {
this.initApp()
},
methods: {
// 初始化应用
initApp() {
// 初始化应用配置
this.initConfig()
// 检查用户登录状态
this.checkLogin()
},
initConfig() {
this.globalData.config = config
},
checkLogin() {
if (!getToken()) {
uni.reLaunch({ url: '/pages/login' })
}
}
}
}
</script>
<style lang="scss">
@import '@/static/scss/index.scss'
</style>
1
https://gitee.com/mqttsnet/thinglinks-app.git
git@gitee.com:mqttsnet/thinglinks-app.git
mqttsnet
thinglinks-app
thinglinks-app
main

搜索帮助