代码拉取完成,页面将自动刷新
<script>
import {
wxlogin
} from 'api/user.js'
export default {
onLaunch: async function() {},
onShow: async function() {
if (uni.getStorageSync('token') && uni.getStorageSync('userId')) {
await this.$store.dispatch('user/getUserInfo')
} else {
await new Promise(resolve => {
uni.login({
timeout: 10000,
success: (result) => {
let code = result.code;
wxlogin({
code: code
}).then(async res => {
let wxUser = res.data.wxUser
uni.setStorageSync('userId', wxUser.wxUserId)
uni.setStorageSync('openId', wxUser.wxOpenid)
if (res.data.token) {
uni.setStorageSync('token', res.data.token)
await this.$store.dispatch('user/getUserInfo')
}
resolve()
}).catch(err => {
uni.removeStorageSync('token')
uni.removeStorageSync('openId')
uni.removeStorageSync('userId')
resolve()
})
},
fail: (err) => {
console.err(err)
},
complete: () => {}
})
})
}
// 绑定公众号信息
let userInfo = this.$store.state.user.userInfo
if (!userInfo||!userInfo.wxmpOpenid) {
uni.navigateTo({
url: '/pages/webview/index'
})
}
this.$isResolve()
// #ifdef MP-WEIXIN
//小程序更新
if (uni.getUpdateManager) {
const updateManager = uni.getUpdateManager();
updateManager.onCheckForUpdate(function(res) {
// 请求完新版本信息的回调
// console.log(res.hasUpdate);
});
updateManager.onUpdateReady(function(res) {
uni.showModal({
title: '更新提示',
content: `系统优化`,
success(res) {
if (res.confirm) {
// 新的版本已经下载好,调用 applyUpdate 应用新版本并重启
updateManager.applyUpdate();
}
}
});
});
updateManager.onUpdateFailed(function(res) {
// 新的版本下载失败
uni.showModal({
title: '已经有新版本了哟~',
content: '新版本已经上线啦~,请您删除当前小程序,重新搜索打开哟~',
showCancel: false
});
});
}
// #endif
},
onHide: function() {
console.log('App Hide')
},
methods: {
// routePublicAuth(){
// let userInfo = this.$store.getters.userInfo
// if(!userInfo.publicOpenId){
// uni.navigateTo({
// url:'/pages/webview/index?userId=' + userInfo.id
// })
// }
// },
},
}
</script>
<style lang="scss">
/* 注意要写在第一行,同时给style标签加入lang="scss"属性 */
@import "uview-ui/index.scss";
@import "./static/style/iconfont.css";
</style>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。