Commit 93e5d6bb authored by 李尚科's avatar 李尚科

fix

parent d97eee58
Pipeline #15789 passed with stage
in 1 minute 9 seconds
...@@ -37,7 +37,7 @@ class WechatController extends Controller { ...@@ -37,7 +37,7 @@ class WechatController extends Controller {
const openid = wx_ret.openid; const openid = wx_ret.openid;
ctx.cookies.set('openid', openid, { httpOnly: false, signed: false, path: '/', overwrite: true }); ctx.cookies.set('openid', openid, { httpOnly: false, signed: false, path: '/', overwrite: true });
const redirect_url = this.app.config.OUT_P_NODE_URL + REDIRECT_PAGE; const redirect_url = this.app.config.PHP_URL + REDIRECT_PAGE;
//判断是否已绑定手机号 //判断是否已绑定手机号
const user_exist_url = `${this.app.config.NODE_BASE_URL}/user_api/v1/user/is_exist/${openid}`; const user_exist_url = `${this.app.config.NODE_BASE_URL}/user_api/v1/user/is_exist/${openid}`;
const bind_phone_result = await ctx.helper.send_request(user_exist_url, { type: 5 }, { method: 'GET' }); const bind_phone_result = await ctx.helper.send_request(user_exist_url, { type: 5 }, { method: 'GET' });
......
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