加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
App.vue 798 Bytes
一键复制 编辑 原始数据 按行查看 历史
okwufeng 提交于 2020-04-17 17:00 . 提交
<script>
import {
mapMutations
} from 'vuex';
export default {
onLaunch: function () {
uni.getStorage({
key: 'uerInfo',
success:(res) => {
this.login(res.data);
// 如果还需要重新校验或是想要刷新token的有效时间 就再联网请求一次
uni.request({
url: `${this.$serverUrl}/auth.php`,
header: {
"Content-Type": "application/x-www-form-urlencoded",
"Token":res.data.token
},
data: {
"username":res.data.user_name
},
method: "POST",
success: (e) => {
if (e.statusCode === 200 && e.data.code === 0) {
this.login(e.data);
}
}
})
}
});
},
methods: {
...mapMutations(['login'])
}
}
</script>
<style>
/*每个页面公共css */
</style>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化