1 Star 0 Fork 0

gaohuibing/人才小程序

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
App.vue 2.59 KB
一键复制 编辑 原始数据 按行查看 历史
gaohuibing 提交于 2024-06-14 16:45 . fix
<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>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/gaohuibing/talent-mini-program.git
git@gitee.com:gaohuibing/talent-mini-program.git
gaohuibing
talent-mini-program
人才小程序
master

搜索帮助