加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
App.vue 1.15 KB
一键复制 编辑 原始数据 按行查看 历史
坟场蹦迪i 提交于 2023-04-24 10:46 . go
<script>
export default {
onLaunch: function() {
//#ifdef APP-PLUS
//获取已保存在本地的用户信息,该内容在登录页面登录成功之后,才保存到本地的
let token = uni.getStorageSync("userinfo").Token
if (!token) {
uni.reLaunch({
url: "/pages/login/login",
success: () => {
//跳转完页面后再关闭启动页
plus.navigator.closeSplashscreen();
}
})
} else {
plus.navigator.closeSplashscreen(); //关闭启动页,进入首页
}
//#endif
},
onShow: function() {
setTimeout(() => {
// #ifdef APP-PLUS
plus.navigator.closeSplashscreen()
// #endif
}, 2000)
// 监听键盘高度变化
uni.onKeyboardHeightChange(res => {
if (res.height > 0) {
uni.setStorageSync('keyboardConfig', {
height: res.height
});
}
});
},
onHide: function() {
console.log('App Hide')
}
}
</script>
<style>
/*每个页面公共css */
@import '@/static/icon/iconfont.css';
.app{
position: fixed;
top: 0;
left: 0;
}
</style>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化