提交 041456aa9b89810f9d50acbc06be9da5d9c09a4f

作者 wangyu
1 个父辈 dc2acc5b

修复登录成功 认证状态的bug

@@ -64,7 +64,7 @@ Page({ @@ -64,7 +64,7 @@ Page({
64 app.globalData.tenant_id = tenant.id; 64 app.globalData.tenant_id = tenant.id;
65 app.globalData.userInfo = user; 65 app.globalData.userInfo = user;
66 app.globalData.wx_open_id = user.wx_open_id; 66 app.globalData.wx_open_id = user.wx_open_id;
67 - 67 + app.globalData.real_auth_status = res.data.user.real_auth_status;
68 app.configOssUrl() 68 app.configOssUrl()
69 wx.reLaunch({ 69 wx.reLaunch({
70 url: '../main/guide/guide' 70 url: '../main/guide/guide'
@@ -116,6 +116,7 @@ Page({ @@ -116,6 +116,7 @@ Page({
116 var tenant = res.data.tenant; 116 var tenant = res.data.tenant;
117 app.globalData.tenant_id = tenant.id; 117 app.globalData.tenant_id = tenant.id;
118 app.globalData.userInfo = user; 118 app.globalData.userInfo = user;
  119 + app.globalData.real_auth_status = res.data.user.real_auth_status;
119 app.globalData.wx_open_id = user.wx_open_id; 120 app.globalData.wx_open_id = user.wx_open_id;
120 app.configOssUrl() 121 app.configOssUrl()
121 wx.reLaunch({ 122 wx.reLaunch({
注册登录 后发表评论