From c136669b4990a5276e594425179e3a41a8fcf5b3 Mon Sep 17 00:00:00 2001 From: yangan <yangan0921@163.com> Date: 星期五, 23 八月 2024 17:01:05 +0800 Subject: [PATCH] feat:请求退单增加限制 --- pages/login/login.vue | 24 +++++++++++++----------- 1 files changed, 13 insertions(+), 11 deletions(-) diff --git a/pages/login/login.vue b/pages/login/login.vue index 3551e59..eee7904 100644 --- a/pages/login/login.vue +++ b/pages/login/login.vue @@ -114,17 +114,17 @@ uni.showLoading({ title: '鍔犺浇涓�...' }); - wx.request({ - url: `https://api.weixin.qq.com/sns/jscode2session?appid=${this.appid}&secret=${this.secret}&js_code=${code}&grant_type=authorization_code`, - success(res) { - console.log(res, 'openid'); - uni.setStorageSync('openid', res.data.openid); - // uni.showToast({ - // title: '鎴愬姛鑾峰彇娴嬭瘯openid', - // icon: 'none' - // }); - } - }); + // wx.request({ + // url: `https://api.weixin.qq.com/sns/jscode2session?appid=${this.appid}&secret=${this.secret}&js_code=${code}&grant_type=authorization_code`, + // success(res) { + // console.log(res, 'openid'); + // uni.setStorageSync('openid', res.data.openid); + // // uni.showToast({ + // // title: '鎴愬姛鑾峰彇娴嬭瘯openid', + // // icon: 'none' + // // }); + // } + // }); this.$nextTick(() => { apiLoginWx({ code: code }).then(res => { if (res.code != 1) { @@ -152,6 +152,8 @@ this.$u.toast(res.msg); this.bindWxModelShow = true; } + }).catch((err) => { + this.loginPopupShow = false; }); }); this.loginPopupShow = false; -- Gitblit v1.9.1