From 0c3e40c399a00fe6405f7b9a79eb1c93b7cc660e Mon Sep 17 00:00:00 2001 From: qingyiay <2386314947@qq.com> Date: 星期二, 11 七月 2023 16:23:33 +0800 Subject: [PATCH] 更改字眼,增加非稳定态下不可称重,增加验质字段 --- pages/login/login.vue | 29 ++++++++++++++++++++++++----- 1 files changed, 24 insertions(+), 5 deletions(-) diff --git a/pages/login/login.vue b/pages/login/login.vue index d697aee..5ef3909 100644 --- a/pages/login/login.vue +++ b/pages/login/login.vue @@ -12,10 +12,15 @@ type="primary" text="寰俊涓�閿櫥褰�"></u-button> </view> + <!-- <view class="loginBtn"> + <u-button @click.stop="jumpBindBack" + type="primary" + text="涓�閿粦瀹氭祴璇�"></u-button> + </view> --> <view class="register" @click="registerClick"><text>娉ㄥ唽</text></view> <view class="login-bottom-box"> - <view class="copyright">鍐�涓兘婧愭棤浜哄�煎畧寰俊灏忕▼搴�</view> + <view class="copyright">鏃犱汉鍊煎畧寰俊灏忕▼搴�</view> <view class="copyright">灏忕▼搴忎粎渚涘凡鎷ユ湁绯荤粺璐﹀彿鐗瑰畾鍐呴儴浜哄憳浣跨敤</view> </view> <!-- 寰俊鎺堟潈鍓嶇殑寮规 --> @@ -68,7 +73,9 @@ // 缁戝畾寰俊妯℃�佹 bindWxModelShow: false, bindWxModelTitle: '鎻愮ず', - bindWxContent: '濡傛灉宸叉嫢鏈夌郴缁熻处鍙凤紝鍙互鐩存帴璺宠浆缁戝畾寰俊椤甸潰' + bindWxContent: '濡傛灉宸叉嫢鏈夌郴缁熻处鍙凤紝鍙互鐩存帴璺宠浆缁戝畾寰俊椤甸潰', + appid: "", + secret: "" }; }, components: { @@ -76,9 +83,16 @@ }, methods: { ...mapMutations(['setUserTabbar', 'changeisLogin']), + getAppidAndSercet() { + this.$reqGet('getAppidAndSercet').then(res => { + this.appid = res.data.appid; + this.secret = res.data.secret + }) + }, // 璁块棶wx.login,鑾峰彇code beforeLoginEvent() { this.loginPopupShow = true; + this.getAppidAndSercet(); }, wxLogin() { // 鑾峰彇鐧诲綍鐢ㄦ埛code @@ -103,7 +117,7 @@ title: '鍔犺浇涓�...' }); wx.request({ - url: `https://api.weixin.qq.com/sns/jscode2session?appid=wx4a62fc1684c429a9&secret=ee90afe376cdcec2fdd947c0a4db961a&js_code=${code}&grant_type=authorization_code`, + url: `https://api.weixin.qq.com/sns/jscode2session?appid=${this.appid}&secret=${this.secret}&js_code=${code}&grant_type=authorization_code`, success(res) { uni.setStorageSync('openid', res.data.openid); // uni.showToast({ @@ -116,7 +130,6 @@ apiLoginWx({ code: code }).then(res => { if (res.code != 1) { this.$u.toast('鐧诲綍鎴愬姛'); - this.changeisLogin(true); // 鐧婚檰鎴愬姛锛屽瓨鍌ㄧ浉鍏充俊鎭� setToken(res.access_token); setRefreshToken(res.refresh_token); @@ -131,7 +144,7 @@ this.$nextTick(() => { redirectHome(); }); - }); + }) } else { this.$u.toast(res.msg); this.bindWxModelShow = true; @@ -160,6 +173,12 @@ uni.navigateTo({ url: '/pages/register/register' }); + }, + // 姝ゆ柟娉曞彧杩涜缁戝畾娴嬭瘯锛屽悗鏈熼�氳繃鎵爜瑙e喅 + jumpBindBack() { + uni.navigateTo({ + url: '/pages/bindBackground/bindBackground' + }) } } }; -- Gitblit v1.9.1