From 3dd852a77ff1fcb8c4c0ceb3a8df727c15ae643e Mon Sep 17 00:00:00 2001
From: qingyiay <2386314947@qq.com>
Date: 星期三, 16 八月 2023 15:39:13 +0800
Subject: [PATCH] 称重异常判断逻辑修改

---
 pages/tabbar-page/index-tabbar/index-tabbar.vue |   16 +++++++++++++---
 1 files changed, 13 insertions(+), 3 deletions(-)

diff --git a/pages/tabbar-page/index-tabbar/index-tabbar.vue b/pages/tabbar-page/index-tabbar/index-tabbar.vue
index 7fe7a38..d97cb70 100644
--- a/pages/tabbar-page/index-tabbar/index-tabbar.vue
+++ b/pages/tabbar-page/index-tabbar/index-tabbar.vue
@@ -23,6 +23,8 @@
 		<driver-index v-if="roleType == 3"
 			ref="driverIndexRef"
 			:indexdriverBillOfLoadingData="indexdriverBillOfLoadingData"></driver-index>
+		<load-unload ref="LoadUnloadRef"
+			v-if="roleType == 5"></load-unload>
 		<tab-bar :current="0"></tab-bar>
 		<!-- 鎺ㄩ�佹秷鎭脊绐� -->
 		<u-modal :show="messagePushShow"
@@ -39,6 +41,7 @@
 	import customerIndex from '@/pages/customer-page/customer-index/customer-index.vue';
 	import driverIndex from '@/pages/driver-page/driver-index/driver-index.vue';
 	import freightForwarderIndex from '@/pages/freight-forwarder-page/freightForwarder-index/freightForwarder-index.vue';
+	import LoadUnload from '@/pages/loadUnload-page/loadUnload-page.vue'
 	import { mapState, mapMutations } from 'vuex';
 	import { webSocketUrl } from '@/api/request.js';
 
@@ -47,7 +50,8 @@
 		components: {
 			customerIndex,
 			driverIndex,
-			freightForwarderIndex
+			freightForwarderIndex,
+			LoadUnload
 		},
 		computed: {
 			...mapState(['globalweighHouseCode', 'globalweigh', 'globalisconnect', 'globalSocket', 'websocketData',
@@ -171,11 +175,11 @@
 		},
 		onShow() {
 			this.init();
-			console.log(this.globalisconnect);
 			if (this.globalisconnect) {
 				this.$store.dispatch('websocketInit')
 				this.changeisconnect(false)
-				console.log(this.globalisconnect, 'index鐨剋s蹇冧簨鈥�');
+				this.$store.commit('changeisLogin', true)
+				console.log(this.globalisconnect, 'index鐨剋s鏁版嵁');
 			}
 			this.userAuthorization();
 			this.messageReq();
@@ -217,6 +221,12 @@
 							this.$refs.driverIndexRef.init();
 						});
 						break;
+					case 5:
+						console.log('LoadUnloadRef');
+						this.$nextTick(() => {
+							this.$refs.LoadUnloadRef.init();
+						});
+						break;
 					default:
 						break;
 				}

--
Gitblit v1.9.1