1 Star 0 Fork 27

Loen/教育考试平台-uniapp

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
App.vue 1.41 KB
一键复制 编辑 原始数据 按行查看 历史
Icyco 提交于 2021-06-10 11:17 . 字体引入
<!-- <script src="./iconfont.js"></script> -->
<script>
export default {
onLaunch: function() {
console.log('App Launch')
// token本地存储,防止刷新清空数据
var that = this
uni.getStorage({ //获得保存在本地的用户信息
key: 'token',
success: (res) => {
console.log('获取本地存储成功');
console.log('token_store res', res);
that.$store.commit('setAccessToken', res.data)
that.$store.state.hasLogin = true
// this.login(res.data);
},
fail() {
console.log('获取本地存储失败');
uni.showToast({
title: '请在登录后查看!',
duration: 2000
})
setTimeout(function() {
uni.navigateTo({
url: '@/pages/login/login'
})
}, 2000);
}
})
},
onShow: function() {
console.log('App Show')
},
onHide: function() {
console.log('App Hide')
},
mounted() {
// window.addEventListener('unload', this.saveState)
},
methods: {
saveState() {
uni.setStorage({
key: 'state',
data: JSON.stringify(this.$store.state),
// success: function () {
// console.log('success');
// }
});
}
}
}
</script>
<style lang="scss">
@import "uview-ui/index.scss";
@import url("./static/iconfont/iconfont.css");
@import "uni.scss";
.icon {
width: 1em;
height: 1em;
vertical-align: -0.15em;
fill: currentColor;
overflow: hidden;
}
</style>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/yepiaohuang/ecloud-uniapp.git
[email protected]:yepiaohuang/ecloud-uniapp.git
yepiaohuang
ecloud-uniapp
教育考试平台-uniapp
master

搜索帮助