Commit d2523711 by 李嘉林

登录返回参数丢失

parent 7dc9cf67
...@@ -283,10 +283,15 @@ export default { ...@@ -283,10 +283,15 @@ export default {
} }
}) })
} else { } else {
/**
* 如果进入的是需要登录的webview页面 h5环境有接口300就会重定向到登录页面
* 这里也判断了是否登录就跳转到登录页面
* 这样就会重复跳转到登录页面
*/
log.info('未登录过需要授权头像昵称信息。') log.info('未登录过需要授权头像昵称信息。')
console.log('未登录过需要授权头像昵称信息。')
const url = `/pages/login/main?back=${encodeURIComponent(this.page)}&param=${ const url = `/pages/login/main?back=${encodeURIComponent(this.page)}&params=${
encodeURIComponent(JSON.stringify(paramsObj)) JSON.stringify(paramsObj)
}`; }`;
log.info(url) log.info(url)
...@@ -404,6 +409,8 @@ export default { ...@@ -404,6 +409,8 @@ export default {
this.init(); this.init();
}, },
onShow(){ onShow(){
console.log('index页面------onShow')
log.info('index页面------onShow')
}, },
methods: { methods: {
init() { init() {
......
...@@ -126,6 +126,7 @@ export default { ...@@ -126,6 +126,7 @@ export default {
this.isOnLoad = true; this.isOnLoad = true;
console.log('----------------------login-onload') console.log('----------------------login-onload')
console.log(options,'----------------------login-onload-options') console.log(options,'----------------------login-onload-options')
console.log(options.params,'----------------------login-onload-options.params')
log.info(options,'----------------------login-onload-options') log.info(options,'----------------------login-onload-options')
this.getShopUserProtocol(); this.getShopUserProtocol();
Object.assign(this.$data, this.$options.data()); //mpvue 的混合周期 使用小程序生命周期数据未初始化 Object.assign(this.$data, this.$options.data()); //mpvue 的混合周期 使用小程序生命周期数据未初始化
......
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