From 546863eae7d337d47260d63a4b3733f7313ce52d Mon Sep 17 00:00:00 2001
From: qingyiay <2386314947@qq.com>
Date: 星期一, 16 十月 2023 15:30:20 +0800
Subject: [PATCH] 登录页调整样式 增加重置密码

---
 pages/tabbar-page/index-tabbar/index-tabbar.vue |  118 +++++++++++++++--------------------------------------------
 1 files changed, 30 insertions(+), 88 deletions(-)

diff --git a/pages/tabbar-page/index-tabbar/index-tabbar.vue b/pages/tabbar-page/index-tabbar/index-tabbar.vue
index eba8902..3dc9c8c 100644
--- a/pages/tabbar-page/index-tabbar/index-tabbar.vue
+++ b/pages/tabbar-page/index-tabbar/index-tabbar.vue
@@ -115,7 +115,24 @@
 				});
 			}
 		},
+		onHide() {
+			console.log('椤甸潰闅愯棌')
+		},
+		onUnload() {
+			console.log('椤甸潰鍗歌浇');
+			this.$store.dispatch('websocketOnClose')
+			clearInterval(this.globalIntervalId);
+			this.changeisconnect(false)
+		},
+		onShow() {
+			this.init();
+		},
 		onLoad() {
+			this.$store.dispatch('websocketInit')
+			this.$store.commit('changeisLogin', true)
+			console.log(this.globalisconnect, 'index鐨剋s鏁版嵁');
+			this.userAuthorization();
+			this.messageReq();
 			// 寮�鍚弻浜洪�氳瘽
 			wx.setEnable1v1Chat({
 				enable: true,
@@ -155,13 +172,10 @@
 				if (v.startsWith('weigh')) {
 					let nowWeighObj = JSON.parse(v.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);
-						}
+						this.changeWeigh(nowWeighObj.weigh);
+						this.changeinfraredStatus(!!nowWeighObj.eqInfraredStatus);
+						let warningState = nowWeighObj.warning == 1
+						this.changeWarning(warningState)
 					}
 				} else if (v.startsWith('msg')) {
 					function removeTags(str) {
@@ -178,36 +192,21 @@
 					}
 				} else if (v.startsWith('wsg')) {
 					let wsgObj = JSON.parse(v.slice(5));
-					if (uni.getStorageInfoSync('carNo') === wsgObj.carNo) {
-						changewsgVisiable(true)
-						changewsgContent(wsgObj.content)
+					if (uni.getStorageSync('carNo') === wsgObj.carNo && !wsgObj.peopleWeigh) {
+						this.changewsgVisiable(true)
+						this.changewsgContent(wsgObj.content)
+					}
+					if (uni.getStorageSync('carNo') === wsgObj.carNo && wsgObj.peopleWeigh === 2) {
+						this.changeconfirmWeighVisiable(true)
+						this.changeconfirmWeighContent(wsgObj.content)
 					}
 				}
 			}
 		},
-		onShow() {
-			this.init();
-			if (this.globalisconnect) {
-				this.$store.dispatch('websocketInit')
-				this.changeisconnect(false)
-				this.$store.commit('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',
-				'changewsgVisiable', 'changewsgContent'
+				'changewsgVisiable', 'changewsgContent', 'changeconfirmWeighVisiable', 'changeconfirmWeighContent',
+				'changeWarning'
 			]),
 			messagePage() {
 				uni.navigateTo({
@@ -277,63 +276,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