From 3f10299a92e23fd902e4bd51a6d59f9bf0c7d7ec Mon Sep 17 00:00:00 2001
From: qingyiay <2386314947@qq.com>
Date: 星期二, 20 六月 2023 10:08:18 +0800
Subject: [PATCH] 增加用户绑定页面

---
 pages/driver-page/driver-index/bill-of-lading-details/bill-of-lading-details.vue |   16 +++++++---------
 1 files changed, 7 insertions(+), 9 deletions(-)

diff --git a/pages/driver-page/driver-index/bill-of-lading-details/bill-of-lading-details.vue b/pages/driver-page/driver-index/bill-of-lading-details/bill-of-lading-details.vue
index 7042ecc..6831ae7 100644
--- a/pages/driver-page/driver-index/bill-of-lading-details/bill-of-lading-details.vue
+++ b/pages/driver-page/driver-index/bill-of-lading-details/bill-of-lading-details.vue
@@ -242,7 +242,7 @@
 				return this.coalDetailsData.hair !== 0 || this.coalDetailsData.skin !== 0;
 			},
 			isapproach() {
-				return this.currentPageCoalStatus <= 3;
+				return this.currentPageCoalStatus !== 3;
 			}
 		},
 		methods: {
@@ -272,14 +272,12 @@
 				this.$reqGet('getCallOutList', this.getServiceOpenid).then(res => {
 					console.log(res, '瀹㈡湇openid');
 					if (res.code != 0) {
-						this.$u.toast('鑾峰彇瀹㈡湇淇℃伅澶辫触');
+						this.$u.toast(res.msg ? res.msg : '鑾峰彇瀹㈡湇淇℃伅澶辫触');
 					} else {
-						if (res.data.length > 0) {
-							this.serviceInfoObj.openId = res.data[0].openId;
-							this.serviceInfoObj.openName = res.data[0].openName;
-							uni.setStorageSync('customeropenId', this.serviceInfoObj.openId);
-							uni.setStorageSync('customerName', this.serviceInfoObj.openName);
-						}
+						this.serviceInfoObj.openId = res.data.openId;
+						this.serviceInfoObj.openName = res.data.openName;
+						uni.setStorageSync('customeropenId', this.serviceInfoObj.openId);
+						uni.setStorageSync('customerName', this.serviceInfoObj.openName);
 					}
 				});
 			},
@@ -411,7 +409,7 @@
 									nickname: uni.getStorageSync('customerName'),
 									openid: uni.getStorageSync(
 										'customeropenId')
-								}, // 杩欓噷鐨刼penid鏄痜yy鐨勶紝鍏呭綋鍥哄畾鐨勫鏈峯penid
+								},
 								backgroundType: 2,
 								roomType: 'voice',
 								success() {

--
Gitblit v1.9.1