代码拉取完成,页面将自动刷新
同步操作将从 lj深/uniapp_chat_client 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
<script>
import request from './api/request.js';
export default {
async onLaunch(){
let token = uni.getStorageSync('token');
if (token) {
let tokenTime = uni.getStorageSync('tokenTime');
let time_difference = (new Date().getTime() - new Date(tokenTime).getTime()) / 1000 / 60 / 60 / 24;
if (time_difference > 6 && time_difference < 8) {
//在这个时间段内重新获取token,重新存储
let res = await request({
url: '/user/token',
data: {
token: uni.getStorageSync('token')
},
method: 'POST'
});
uni.setStorageSync('token', res[1].data.token);
uni.setStorageSync('tokenTime', new Date());
} else if (time_difference > 7) {
//token存储的时间大于7天,需要重新登录
uni.removeStorageSync('token');
uni.removeStorageSync('tokenTime');
uni.navigateTo({
url: 'pages/signin/signin'
});
} else {
this.$store.dispatch('getNotice');
this.$store.dispatch('getFriends');
this.$store.dispatch('getAcquire');
this.$store.dispatch('getUserInfo');
this.$store.dispatch('getDyNotify');
this.$store.dispatch('getComNotify');
this.$store.dispatch('acquireVisitors');
this.$store.dispatch('getDialogue');
uni.switchTab({
url: './pages/index/index'
});
}
} else {
uni.navigateTo({
url: './pages/signin/signin'
});
}
},
onShow: function() {
// console.log('App Show')
},
onHide: function() {
// console.log('App Hide')
}
};
</script>
<style>
/*每个页面公共css */
@import 'https://at.alicdn.com/t/font_1872738_qonhf418ypb.css';
</style>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。