From 56ef0500de7867dc11f723fb59dc3cbbf7e63d10 Mon Sep 17 00:00:00 2001
From: 819527061@qq.com <123456>
Date: 星期二, 11 六月 2024 16:28:37 +0800
Subject: [PATCH] docs:密码强度细节完善

---
 pages/driver-page/driver-index/driver-index.vue |  148 +++++++++++++++++++++++++++++++++++++++++-------
 1 files changed, 125 insertions(+), 23 deletions(-)

diff --git a/pages/driver-page/driver-index/driver-index.vue b/pages/driver-page/driver-index/driver-index.vue
index 86a6c78..ef9e243 100644
--- a/pages/driver-page/driver-index/driver-index.vue
+++ b/pages/driver-page/driver-index/driver-index.vue
@@ -175,6 +175,28 @@
 						@confirm="cancelAppointConfirm"
 						@cancel="cancelAppointCancel"></u-modal>
 				</view>
+				<!-- 鍦哄唴鎺ュ崟寮圭獥 -->
+				<view class="">
+					<u-modal :show="insideConnectShow"
+						title="鎺ュ崟閫夋嫨"
+						showCancelButton
+						cancel-text="姝e父鎺ュ崟"
+						confirm-text="鍦哄唴鎺ュ崟"
+						content="鍦哄唴鎺ュ崟鏃犻渶绉扮毊,鏄惁纭鎺ュ崟"
+						@confirm="insideConnectConfirm"
+						@cancel="insideConnectCancel"></u-modal>
+				</view>
+				<!-- 璺濈杩囧ぇ鎻愮ず -->
+				<view class="">
+					<u-modal :show="isOutFlag"
+						title="鏄惁鎺ュ崟"
+						showCancelButton
+						cancel-text="浠嶇劧鎺ュ崟"
+						confirm-text="鏆傛椂涓嶆帴"
+						content="褰撳墠璺濈杩囪繙鏄惁鎺ュ崟锛�"
+						@confirm="isCancel"
+						@cancel="isOk"></u-modal>
+				</view>
 				<!-- 宸查绾︽彁鐓ゅ崟 -->
 				<view class="Reserved">
 					<combined-title title="宸查绾︽彁鐓ゅ崟"></combined-title>
@@ -244,7 +266,8 @@
 									<!-- <view class="order-type">{{ item.orderType }}</view> -->
 								</view>
 							</view>
-							<view class="fourth-line">
+							<view class="fourth-line"
+								v-if="item.status<3">
 								<view class="button-img"
 									@click.stop="cancelAppoint(item)">
 									璇锋眰閫�鍗�
@@ -301,18 +324,25 @@
 					list3: []
 				},
 				// 鎺ュ崟妯℃�佹
+				isOutFlag:false,
 				qiangDanShow: false,
 				qiangDanTitle: '鎺ュ崟鎻愮ず',
+				qiangdanItem:{}, //鎶㈠崟瀵硅薄
 				qiangDanContent: '',
 				qiangDanOrderPlanId: null,
-				fleetId: '',
-				xsUserId: '',
-				customerId: '',
 				isFirstLogin: true, //鏄惁鏄涓�娆$櫥褰�
 				phone: "",
 				isFirstTime: false, //鏄惁鏄櫥褰曡繘鍏ラ椤碉紝杩樻槸鍒殑椤甸潰杩斿洖 false鏄櫥褰� true鏄埆鐨勯〉闈�
 				cancelAppointShow: false, //纭閫�鍗曞脊绐楁帶鍒�
-				cancelAppointId: ''
+				cancelAppointId: '',
+				insideConnectShow: false,
+				orderPlanId: '',
+				fleetId: '',
+				latitude:'',
+				longitude:'',
+				customerId: '',
+				xsUserId: '',
+				filedId: '',
 			};
 		},
 		onShow() {
@@ -342,16 +372,27 @@
 			},
 			// 鎺ュ崟鎸夐挳
 			qiangDanBtn(value) {
-				if (value.tmcCount == '0') {
-					this.qiangDan(value.orderPlanId, value.fleetId, value.customerId === null ? '0' : value.customerId,
-						value.xsUserId === null ? '0' : value.xsUserId);
+				this.qiangdanItem = value;
+				//鏄惁鍙互鍦哄唴鎺ュ崟锛�1 鍙互2涓嶅彲浠�
+				if (value.isInsideConnect === 1) {
+					this.insideConnectShow = true
+					this.orderPlanId = value.orderPlanId
+					this.fleetId = value.fleetId
+					this.customerId = !value.customerId ? '0' : value.customerId
+					this.xsUserId = !value.xsUserId ? '0' : value.xsUserId
+					this.filedId = value.filedId
 				} else {
-					this.qiangDanOrderPlanId = value.orderPlanId;
-					this.fleetId = value.fleetId;
-					this.customerId = value.customerId === null ? '0' : value.customerId;
-					this.xsUserId = value.xsUserId === null ? '0' : value.xsUserId;
-					this.qiangDanShow = true;
-					this.qiangDanContent = `宸叉帴${value.tmcCount}鍗曪紝纭畾鎺ュ崟锛焋;
+					if (value.tmcCount == '0') {
+						this.qiangDan(value.orderPlanId, value.fleetId, !value.customerId ? '0' : value.customerId,
+							!value.xsUserId ? '0' : value.xsUserId);
+					} else {
+						this.qiangDanOrderPlanId = value.orderPlanId;
+						this.fleetId = value.fleetId;
+						this.customerId = !value.customerId ? '0' : value.customerId;
+						this.xsUserId = !value.xsUserId ? '0' : value.xsUserId;
+						this.qiangDanShow = true;
+						this.qiangDanContent = `宸叉帴${value.tmcCount}鍗曪紝纭畾鎺ュ崟锛焋;
+					}
 				}
 			},
 			// 鎺ュ崟妯℃�佹
@@ -368,27 +409,72 @@
 				uni.showLoading({
 					title: '鍔犺浇涓�'
 				})
-				this.$reqPost('qiangDan', {
+				let that = this;
+				uni.getFuzzyLocation({
+				type: 'wgs84', // 杩斿洖鍙互鐢ㄤ簬wx.openLocation鐨勭粡绾害锛岄粯璁や负wgs84鐨刧ps鍧愭爣
+				success: function(res) {
+					that.latitude = res.latitude;
+					that.longitude = res.longitude;
+					// 鍙互鍦ㄨ繖閲岀户缁鐞嗚幏鍙栧埌鐨勭粡绾害淇℃伅
+					console.log(that.latitude,that.longitude,'132')
+				},
+				fail: function(err) {
+					// 鑾峰彇鍦扮悊浣嶇疆澶辫触
+					console.log(err,'鑾峰彇鍦扮悊浣嶇疆澶辫触');
+				},
+				complete :()=>{
+					this.$reqPost('qiangDan', {
 						orderPlanId: id,
 						fleetId: fleetId,
 						customerId: customerId,
-						xsUserId: xsUserId
+						xsUserId: xsUserId,
+						latitude:this.latitude,
+						longitude:this.longitude
 					}, 'params')
 					.then(res => {
 						uni.hideLoading()
 						if (res.code == 0) {
 							this.$u.toast('鎺ュ崟鎴愬姛');
-						} else {
-							this.$u.toast(res.msg ? res.msg : '鎺ュ崟澶辫触');
-						}
-					})
-					.then(() => {
-						setTimeout(() => {
+							setTimeout(() => {
 							this.qiangDanList();
 						}, 1500);
+						} else if (res.code == 2){
+							//璺濈杩囪繙
+							this.isOutFlag = true;
+						} else {
+							this.$u.toast(res.msg ? res.msg : '鎺ュ崟澶辫触');
+							setTimeout(() => {
+							this.qiangDanList();
+						}, 1500);
+						} 
+					})
+					.then(() => {
+					
 					}).catch(e => {
 						uni.hideLoading()
 					})
+				}
+				});
+			
+			},
+			insideConnectHandle(orderPlanId, fleetId, customerId, xsUserId, filedId) {
+				uni.showLoading({
+					title: '鍔犺浇涓�'
+				})
+				this.$reqPost('insideConnect', {
+					orderPlanId,
+					fleetId,
+					customerId,
+					xsUserId,
+					filedId
+				}, 'params').then(res => {
+					uni.hideLoading()
+					if (res.code == 0) {
+						this.$u.toast('鍦哄唴鎺ュ崟鎴愬姛');
+					} else {
+						this.$u.toast(res.msg ? res.msg : '鍦哄唴鎺ュ崟澶辫触');
+					}
+				})
 			},
 			list3CardIconClick(value) {
 				uni.navigateTo({
@@ -404,7 +490,7 @@
 			// 璇锋眰閫�鍗�
 			cancelAppoint(item) {
 				if (item.status >= 3) {
-					this.$uy.toast('褰撳墠鐘舵�佷笉鍙��鍗�')
+					this.$u.toast('褰撳墠鐘舵�佷笉鍙��鍗�')
 					return
 				}
 				this.cancelAppointShow = true
@@ -435,6 +521,15 @@
 			cancelAppointCancel() {
 				this.cancelAppointShow = false
 			},
+			insideConnectCancel() {
+				this.insideConnectShow = false
+				this.qiangDan(this.orderPlanId, this.fleetId, this.customerId, this.xsUserId)
+			},
+			// 鍦哄唴鎺ュ崟
+			insideConnectConfirm() {
+				this.insideConnectShow = false
+				this.insideConnectHandle(this.orderPlanId, this.fleetId, this.customerId, this.xsUserId, this.filedId)
+			},
 			// 鍘婚绾�
 			toAppointmentClick(value) {
 				// 鐢变簬鑷富閰嶉�佸崟 鏄璐崟 浣嗘槸涓嶉渶瑕佸~鍐欏師鍙戜负1涓嶉渶瑕佸~鍐欏師鍙�
@@ -454,6 +549,13 @@
 				uni.navigateTo({
 					url: '/pages/driver-page/driver-index/SelfDelivery/SelfDelivery'
 				})
+			},
+			isOk(){
+				this.isOutFlag = false
+			     this.qiangDanBtn(this.qiangdanItem);
+			},
+			isCancel(){
+				this.isOutFlag = false
 			}
 		}
 	};

--
Gitblit v1.9.1