From b0e249aa5d69791a5d9b9bec64d4e8897b4bae69 Mon Sep 17 00:00:00 2001
From: yangan <yangan0921@163.com>
Date: 星期五, 28 三月 2025 17:32:09 +0800
Subject: [PATCH] feat:体积缩小

---
 pages/login/login.vue |   41 +++++++++++++++++++++++++++++------------
 1 files changed, 29 insertions(+), 12 deletions(-)

diff --git a/pages/login/login.vue b/pages/login/login.vue
index c85c741..4bb6def 100644
--- a/pages/login/login.vue
+++ b/pages/login/login.vue
@@ -2,8 +2,9 @@
 	<view class="login">
 		<view class="logo">鏃犱汉鍊煎畧</view>
 		<!--鐢ㄦ埛鍚嶅瘑鐮佺櫥褰�-->
-		<user-password :btnText="0" />
+		<user-password :btnText="0"  :userList="userList"/>
 		<!-- 寰俊openid鐧诲綍 -->
+		  <!--  #ifdef MP-WEIXIN  -->
 		<view class="loginBtn">
 			<u-button class="button"
 				@click.stop="beforeLoginEvent"
@@ -12,10 +13,13 @@
 				type="primary"
 				text="寰俊涓�閿櫥褰�"></u-button>
 		</view>
+		  <!--  #endif  -->
+			<!--  #ifdef MP-WEIXIN  -->
 		<view class="utils-block">
 			<view @click="forgetPassword"><text>蹇樿瀵嗙爜?</text></view>
 			<view @click="PrivacyAgreementHandle"><text>鏂扮敤鎴锋敞鍐�</text></view>
 		</view>
+		 <!--  #endif  -->
 
 		<view class="login-bottom-box">
 			<view class="copyright">鍐�涓兘婧愭棤浜哄�煎畧寰俊灏忕▼搴�</view>
@@ -74,10 +78,14 @@
 				bindWxContent: '濡傛灉宸叉嫢鏈夌郴缁熻处鍙凤紝鍙互鐩存帴璺宠浆缁戝畾寰俊椤甸潰',
 				appid: "",
 				secret: "",
+				userList:[]
 			};
 		},
 		components: {
 			userPassword
+		},
+		onShow() {
+			this.userList=uni.getStorageSync('userList')?JSON.parse(uni.getStorageSync('userList')):[];
 		},
 		methods: {
 			...mapMutations(['setUserTabbar', 'changeisLogin']),
@@ -114,22 +122,23 @@
 				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) {
 							this.$u.toast('鐧诲綍鎴愬姛');
 							this.changeisLogin(true);
+							this.getLoginInfo();
 							// 鐧婚檰鎴愬姛锛屽瓨鍌ㄧ浉鍏充俊鎭�
 							setToken(res.access_token);
 							setRefreshToken(res.refresh_token);
@@ -151,6 +160,8 @@
 							this.$u.toast(res.msg);
 							this.bindWxModelShow = true;
 						}
+					}).catch((err) => {
+						this.loginPopupShow = false;
 					});
 				});
 				this.loginPopupShow = false;
@@ -161,6 +172,12 @@
 				});
 				this.bindWxModelShow = false;
 			},
+			//璁板綍鐧诲綍淇℃伅
+			getLoginInfo(){
+				this.$reqPost('setApplogonTime').then((res) => {
+				  	
+				})
+			},
 			bindWxCancel() {
 				this.bindWxModelShow = false;
 			},

--
Gitblit v1.9.1