1 Star 0 Fork 22

八爪鱼/IoTOS-App

forked from CHINAIoTOS/IoTOS-App 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
App.vue 990 Bytes
一键复制 编辑 原始数据 按行查看 历史
iotcard 提交于 2023-07-30 20:33 . iotos-app v0.6.0 更新
<script>
import config from './config'
import store from '@/store'
import { getToken } from '@/utils/auth'
import tools from '@/utils/iotos/tools'
export default {
onLaunch: function() {
uni.hideTabBar();
this.initApp();
},
methods: {
// 初始化应用
initApp() {
// 初始化应用配置
this.initConfig()
// 检查用户登录状态
//#ifdef H5
this.checkLogin()
//#endif
},
initConfig() {
this.globalData.config = config
},
checkLogin() {
if (tools.isNull(getToken())) {
uni.setStorageSync('selectedIndex', 2);
this.$tab.reLaunch('/pages/IoTOS')
}else{
//
}
}
}
}
</script>
<style lang="scss">
@import '@/static/scss/index.scss'
</style>
<style>
.uni-app--showleftwindow + .uni-tabbar-bottom {
display: none;
}
.content{
padding-bottom: calc(var(--window-bottom) + 20px);
}
</style>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/elfbobo_admin_admin/iotos-app.git
[email protected]:elfbobo_admin_admin/iotos-app.git
elfbobo_admin_admin
iotos-app
IoTOS-App
master

搜索帮助