From 0ad1bb4a25e7b5d98b4d0fc18e7294d132e1ec3e Mon Sep 17 00:00:00 2001
From: wk
Date: 星期四, 13 六月 2024 14:44:58 +0800
Subject: [PATCH] feat:运输证

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

diff --git a/pages/login/login.vue b/pages/login/login.vue
index aef23db..2f5b0c9 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,17 +13,18 @@
 				type="primary"
 				text="寰俊涓�閿櫥褰�"></u-button>
 		</view>
-		<!-- <view class="loginBtn">
-			<u-button @click.stop="jumpBindBack"
-				type="primary"
-				text="涓�閿粦瀹氭祴璇�"></u-button>
-		</view> -->
-		<view class="register"
-			@click="PrivacyAgreementHandle"><text>娉ㄥ唽</text></view>
+    <!--  #endif  -->
+		<view class="utils-block">
+			<view @click="forgetPassword"><text>蹇樿瀵嗙爜?</text></view>
+			<view @click="PrivacyAgreementHandle"><text>鏂扮敤鎴锋敞鍐�</text></view>
+		</view>
+
 		<view class="login-bottom-box">
 			<view class="copyright">鍐�涓兘婧愭棤浜哄�煎畧寰俊灏忕▼搴�</view>
 			<view class="copyright">灏忕▼搴忎粎渚涘凡鎷ユ湁绯荤粺璐﹀彿鐗瑰畾鍐呴儴浜哄憳浣跨敤</view>
 		</view>
+
+    <!--  #ifdef MP-WEIXIN  -->
 		<!-- 寰俊鎺堟潈鍓嶇殑寮规 -->
 		<view class="loginPopup">
 			<u-popup :show="loginPopupShow"
@@ -57,6 +59,7 @@
 				@confirm="bindWxConfirm"
 				@cancel="bindWxCancel"></u-modal>
 		</view>
+    <!--  #endif  -->
 	</view>
 </template>
 
@@ -76,10 +79,14 @@
 				bindWxContent: '濡傛灉宸叉嫢鏈夌郴缁熻处鍙凤紝鍙互鐩存帴璺宠浆缁戝畾寰俊椤甸潰',
 				appid: "",
 				secret: "",
+				userList:[]
 			};
 		},
 		components: {
 			userPassword
+		},
+		onShow() {
+			this.userList=uni.getStorageSync('userList')?JSON.parse(uni.getStorageSync('userList')):[];
 		},
 		methods: {
 			...mapMutations(['setUserTabbar', 'changeisLogin']),
@@ -141,6 +148,7 @@
 								this.setUserTabbar(res.data.type);
 								uni.setStorageSync('roleType', res.data.type);
 								uni.setStorageSync("userId", res.data.userId)
+								uni.setStorageSync("carNo", res.data.carNo)
 								setCustomerId(res.data.customerid);
 								uni.hideLoading();
 								//璺宠浆椤甸潰
@@ -172,6 +180,11 @@
 			openPopup() {
 				console.log('鎵撳紑浜�');
 			},
+			forgetPassword() {
+				uni.navigateTo({
+					url: '/pages/login/forgetPassword/forgetPassword'
+				})
+			},
 			PrivacyAgreementHandle() {
 				uni.navigateTo({
 					url: '/pages/login/PrivacyAgreementText/PrivacyAgreementText'
@@ -189,32 +202,21 @@
 	}
 
 	.login {
-		// height: 100vh;
-		// display: flex;
-		// align-items: center;
-
-		// .loginBtn {
-		//   margin: 0 auto;
-		//   width: 80%;
-
-		//   .u-button {
-		//     .u-icon {
-		//       .u-icon__icon {
-		//         font-size: vww(20) !important;
-		//       }
-		//     }
-		//   }
-
-		//   .u-button--success {
-		//     border-style: none;
-		//   }
-		// }
 		.loginBtn {
 			margin-top: vww(20);
 
 			.u-button {
 				width: 80%;
 			}
+		}
+
+		.utils-block {
+			width: 80%;
+			margin: vww(20) auto;
+			display: flex;
+			justify-content: space-between;
+			color: #497bff;
+			font-size: vww(17);
 		}
 
 		.logo {
@@ -318,4 +320,4 @@
 			}
 		}
 	}
-</style>
\ No newline at end of file
+</style>

--
Gitblit v1.9.1