1 Star 9 Fork 1

小小/个人简历云开发小程序

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
App.vue 2.39 KB
一键复制 编辑 原始数据 按行查看 历史
春哥 提交于 2021-05-20 21:24 . Signed-off-by: hcc [email protected]
<script>
import Vue from 'vue'
export default {
onLaunch: function() {
uni.getSystemInfo({
success: function(e) {
// #ifndef MP
Vue.prototype.StatusBar = e.statusBarHeight;
if (e.platform == 'android') {
Vue.prototype.CustomBar = e.statusBarHeight + 50;
} else {
Vue.prototype.CustomBar = e.statusBarHeight + 45;
};
// #endif
// #ifdef MP-WEIXIN
Vue.prototype.StatusBar = e.statusBarHeight;
let custom = wx.getMenuButtonBoundingClientRect();
Vue.prototype.Custom = custom;
Vue.prototype.CustomBar = custom.bottom + custom.top - e.statusBarHeight;
// #endif
// #ifdef MP-ALIPAY
Vue.prototype.StatusBar = e.statusBarHeight;
Vue.prototype.CustomBar = e.statusBarHeight + e.titleBarHeight;
// #endif
}
})
//用户登录
this.authLogin()
},
onShow: function() {
},
onHide: function() {
},
methods: {
authLogin() {
uni.login({
provider: 'weixin',
success: async (loginRes) => {
let code = loginRes.code
this.$api.wechatLogin({
code
}).then(res => {
this.$store.commit('user/setUid', res.uid)
this.$store.commit('user/setUserInfo', res.userInfo)
this.$store.commit('user/setLogin', true)
if (res.token) {
this.$store.commit('user/setToken', res.token, res.tokenExpired)
}
// 登录成功
this.globalData.successCallbackHander.exec()
})
}
})
}
},
globalData: {
//登录回调函数
successCallbackHander: {
callbackList: new Array(),
//添加回调函数
add(func, _this) {
let isLogin = this.getState()
let route = _this.__route__
if (isLogin) {
func()
} else {
let callIndex = this.callbackList.findIndex(call => call.route == route)
if (callIndex === -1) {
this.callbackList.push({
func: func.bind(_this),
route: route
})
}
}
},
//执行回调函数
exec() {
this.callbackList.forEach(callback => callback.func())
},
getState: () => {
return Vue.prototype.$store.getters['user/getLogin']
}
}
}
}
</script>
<style lang="scss">
/*每个页面公共css */
@import "./static/css/main.css";
@import "./static/css/icon.css";
@import "./static/css/animation.css";
@import "./static/icon/iconfont.css";
page {
background-color: #FFFFFF;
}
</style>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/hccwh/resume.git
[email protected]:hccwh/resume.git
hccwh
resume
个人简历云开发小程序
master

搜索帮助