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 |   83 ++++++++++++++++++++---------------------
 1 files changed, 41 insertions(+), 42 deletions(-)

diff --git a/pages/login/login.vue b/pages/login/login.vue
index 53ea34c..eee7904 100644
--- a/pages/login/login.vue
+++ b/pages/login/login.vue
@@ -12,13 +12,11 @@
 				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>
+		<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>
@@ -116,22 +114,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);
@@ -141,9 +140,7 @@
 								this.setUserTabbar(res.data.type);
 								uni.setStorageSync('roleType', res.data.type);
 								uni.setStorageSync("userId", res.data.userId)
-								if (res.data.carNo) {
-									uni.setStorageSync("carNo", res.data.carNo)
-								}
+								uni.setStorageSync("carNo", res.data.carNo)
 								setCustomerId(res.data.customerid);
 								uni.hideLoading();
 								//璺宠浆椤甸潰
@@ -155,6 +152,8 @@
 							this.$u.toast(res.msg);
 							this.bindWxModelShow = true;
 						}
+					}).catch((err) => {
+						this.loginPopupShow = false;
 					});
 				});
 				this.loginPopupShow = false;
@@ -165,6 +164,12 @@
 				});
 				this.bindWxModelShow = false;
 			},
+			//璁板綍鐧诲綍淇℃伅
+			getLoginInfo(){
+				this.$reqPost('setApplogonTime').then((res) => {
+				  	
+				})
+			},
 			bindWxCancel() {
 				this.bindWxModelShow = false;
 			},
@@ -174,6 +179,11 @@
 			},
 			openPopup() {
 				console.log('鎵撳紑浜�');
+			},
+			forgetPassword() {
+				uni.navigateTo({
+					url: '/pages/login/forgetPassword/forgetPassword'
+				})
 			},
 			PrivacyAgreementHandle() {
 				uni.navigateTo({
@@ -192,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 {
@@ -321,4 +320,4 @@
 			}
 		}
 	}
-</style>
\ No newline at end of file
+</style>

--
Gitblit v1.9.1