From 837c21ced9ed0aafe17a7c0c16975a1b6731eb9d Mon Sep 17 00:00:00 2001
From: qingyiay <2386314947@qq.com>
Date: 星期五, 07 七月 2023 11:30:37 +0800
Subject: [PATCH] 验质功能修改,websocket优化

---
 pages/tabbar-page/index-tabbar/index-tabbar.vue |   79 +++++++--------------------------------
 1 files changed, 14 insertions(+), 65 deletions(-)

diff --git a/pages/tabbar-page/index-tabbar/index-tabbar.vue b/pages/tabbar-page/index-tabbar/index-tabbar.vue
index 04a8ca5..a2087ce 100644
--- a/pages/tabbar-page/index-tabbar/index-tabbar.vue
+++ b/pages/tabbar-page/index-tabbar/index-tabbar.vue
@@ -13,7 +13,7 @@
 				</view>
 			</view>
 		</view>
-		<customer-index v-if="roleType == 1"
+		<customer-index v-if="roleType == 1||roleType == 4"
 			ref="customerIndexRef"
 			:orderPlanDataStore="orderPlanDataStore"></customer-index>
 		<freight-forwarder-index v-if="roleType == 2"
@@ -70,7 +70,7 @@
 				});
 			}
 			// 瀹㈡埛鑾峰彇鏃ヨ鍒�
-			if (this.roleType == 1) {
+			if (this.roleType == 1 || this.roleType == 4) {
 				this.$reqGet('GetOrderPlan').then(res => {
 					if (res.data) {
 						this.orderPlanDataStore = res.data;
@@ -171,25 +171,25 @@
 		},
 		onShow() {
 			this.init();
-			console.log(this.globalisconnect);
 			if (this.globalisconnect) {
 				this.$store.dispatch('websocketInit')
 				this.changeisconnect(false)
-				console.log(this.globalisconnect, 'index鐨剋s蹇冧簨鈥�');
+				this.changeisLogin(true)
+				console.log(this.globalisconnect, 'index鐨剋s鏁版嵁鈥�');
 			}
 			this.userAuthorization();
 			this.messageReq();
-		},
-		onHide() {
-			console.log('椤甸潰闅愯棌')
 		},
 		onUnload() {
 			console.log('椤甸潰鍗歌浇');
 			this.$store.dispatch('websocketOnClose')
 			clearInterval(this.globalIntervalId);
+			this.changeisconnect(true)
 		},
 		methods: {
-			...mapMutations(['pushMessage', 'changeWeigh', 'changeinfraredStatus', 'changeisconnect', 'websocketInit']),
+			...mapMutations(['pushMessage', 'changeWeigh', 'changeinfraredStatus', 'changeisconnect', 'websocketInit',
+				'changeisLogin'
+			]),
 			messagePage() {
 				uni.navigateTo({
 					url: '/pages/public-page/message/message'
@@ -214,6 +214,12 @@
 						console.log('driverIndexRef');
 						this.$nextTick(() => {
 							this.$refs.driverIndexRef.init();
+						});
+						break;
+					case 4:
+						console.log('customerIndexRef');
+						this.$nextTick(() => {
+							this.$refs.customerIndexRef.init();
 						});
 						break;
 					default:
@@ -255,63 +261,6 @@
 					fail() {
 						console.log('鑾峰彇澶辫触');
 					}
-				});
-			},
-			// 鍒濆鍖杦ebsocket
-			initWebsocket() {
-				let wsUrl = `${webSocketUrl}?access_token=${uni.getStorageSync('token')}`;
-				socket = uni.connectSocket({
-					url: wsUrl,
-					header: {
-						CLIENT_TOC: 'Y'
-					},
-					complete: res => {
-						console.log(res, 'socket缁撴灉');
-						if (res.errMsg == 'connectSocket:ok') {
-							this.changeisconnect(true);
-							this.isconnect = true;
-						}
-					}
-				});
-				socket.onOpen(() => {
-					console.log('onOpen');
-					this.intervalId = setInterval(() => {
-						socket.send({
-							data: JSON.stringify({ type: 'ping' }),
-							success(e) {
-								console.log(e, '鍙戦�佸績璺虫垚鍔�');
-							}
-						});
-					}, 30000);
-				});
-
-				// 鑾峰彇鏈嶅姟鍣ㄤ紶鏉ョ殑鏁版嵁锛屽仛鐩稿簲澶勭悊
-				socket.onMessage(res => {
-					console.log('message', res);
-					if (res.data.startsWith('weigh')) {
-						let nowWeighObj = JSON.parse(res.data.slice(7));
-						if (this.globalweighHouseCode && nowWeighObj.eqCode == this.globalweighHouseCode) {
-							if (nowWeighObj.eqInfraredStatus) {
-								this.changeinfraredStatus(true);
-								this.changeWeigh(nowWeighObj.weigh);
-							} else {
-								this.changeinfraredStatus(false);
-								this.changeWeigh(nowWeighObj.weigh);
-							}
-						}
-					} else if (res.data.startsWith('msg')) {
-						this.messageList = JSON.parse(res.data.slice(5));
-						this.messagePushShow = true;
-					} else {}
-				});
-				socket.onClose(e => {
-					console.log('webSocketClose', e);
-					this.isconnect = false;
-					this.changeisconnect(false);
-				});
-				socket.onError(err => {
-					console.log('socket鎶ラ敊', err);
-					this.$u.toast('鍑虹幇閿欒锛岃閲嶆柊杩涘叆璇ラ〉闈紝閲嶈瘯锛侊紒');
 				});
 			},
 			messageconfirm() {

--
Gitblit v1.9.1