Commit 609814e2 by 程智春

Merge branch 'product_dev' of http://code.mayi888.com/chengmo/mayi-mp-shop into product_dev

parents 3fc6ba20 cfcbb836
...@@ -37,6 +37,7 @@ export default { ...@@ -37,6 +37,7 @@ export default {
}, },
data() { data() {
return { return {
code: "",
session_key: "", session_key: "",
shopName: "", shopName: "",
logoUrl: "", logoUrl: "",
...@@ -66,13 +67,40 @@ export default { ...@@ -66,13 +67,40 @@ export default {
}; };
}, },
created() {}, created() {},
onShow() {
wx.checkSession({
success : () => {
//session_key 未过期,并且在本生命周期一直有效
wx.login({
success: res => {
this.code = res.code;
},
fail: err => {
reject(err);
}
}) //重新登录
},
fail : () => {
// session_key 已经失效,需要重新执行登录流程
wx.login({
success: res => {
this.code = res.code;
},
fail: err => {
reject(err);
}
}) //重新登录
}
})
},
onLoad(options) { onLoad(options) {
Object.assign(this.$data, this.$options.data()); //mpvue 的混合周期 使用小程序生命周期数据未初始化 Object.assign(this.$data, this.$options.data()); //mpvue 的混合周期 使用小程序生命周期数据未初始化
if (options.back) { if (options.back) {
this.backPath = options.back; this.backPath = options.back;
} }
if (options.params) { if (options.params) {
this.backParams = serialize(options.params); this.defalutBackParams= serialize(options.params);
this.backParams = this.defalutBackParams;
let params = JSON.parse(options.params); let params = JSON.parse(options.params);
this.fromType = params.fromType; this.fromType = params.fromType;
} }
...@@ -102,11 +130,8 @@ export default { ...@@ -102,11 +130,8 @@ export default {
}, },
init() { init() {
return new Promise((resolve, reject) => { return new Promise((resolve, reject) => {
wx.login({
success: res => {
if (res.code) {
login login
.miniLogin({ code: res.code, .miniLogin({ code: this.code,
spokesmanRelId : this.$store.state.spokesmanRelId, spokesmanRelId : this.$store.state.spokesmanRelId,
spokesmanGroupId : this.$store.state.spokesmanGroupId, spokesmanGroupId : this.$store.state.spokesmanGroupId,
spokesmanShopId : this.$store.state.spokesmanShopId spokesmanShopId : this.$store.state.spokesmanShopId
...@@ -121,15 +146,10 @@ export default { ...@@ -121,15 +146,10 @@ export default {
.catch(err => { .catch(err => {
reject(err); reject(err);
}); });
}
},
fail: err => {
reject(err);
}
});
}); });
}, },
getUserInfo: function(e) { getUserInfo: function(e) {
this.backParams=this.defalutBackParams
wx.showLoading({ wx.showLoading({
title: "加载中" title: "加载中"
}); });
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment