From b8a7d477f894fcffc32c2d5fb1f3ff5bf6409fc4 Mon Sep 17 00:00:00 2001
From: qingyiay <2386314947@qq.com>
Date: 星期五, 07 七月 2023 14:25:41 +0800
Subject: [PATCH] 验质增加字段

---
 store/index.js |   44 +++++++++++++++++++++++++++++++-------------
 1 files changed, 31 insertions(+), 13 deletions(-)

diff --git a/store/index.js b/store/index.js
index d5d5ba6..4c8a99f 100644
--- a/store/index.js
+++ b/store/index.js
@@ -169,7 +169,11 @@
 		},
 		// 鏀瑰彉閲嶈繛娆℃暟
 		changereconnectNum(state, payload) {
-			state.connectNum = payload
+			if (state.connectNum < 6) {
+				state.connectNum += payload
+			} else {
+				state.connectNum = payload
+			}
 		},
 	},
 	actions: {
@@ -221,12 +225,22 @@
 			clearInterval(state.reconnectTimeOut)
 			state.socketTast = null
 			commit('changereconnectState', false)
-			if (state.connectNum < 6) {
-				dispatch('reconnect')
-			} else {
+			if (state.connectNum < 6 && state.globalisLogin) {
+				uni.showToast({
+					title: `杩炴帴澶辫触锛屾鍦ㄥ皾璇曠${state.connectNum}娆¤繛鎺,
+					icon: 'none'
+				})
 				commit('changereconnectNum', 1)
+				dispatch('reconnect')
+			} else if (state.connectNum > 6 && state.globalisLogin) {
+				commit('changereconnectNum', 1)
+				uni.showToast({
+					title: '缃戠粶寮傚父,璇风◢鍚庨噸璇�',
+					icon: 'none'
+				})
+			} else {
+				return
 			}
-
 		},
 		websocketOnError({ state, commit, dispatch }, e) {
 			// 濡傛灉閲嶈繛鐘舵�佷负false鍒欎笉杩涜閲嶈繛锛屼负true鎵嶄細
@@ -235,17 +249,21 @@
 			clearInterval(state.reconnectTimeOut)
 			state.socketTast = null
 			commit('changereconnectState', false)
-			if (state.connectNum < 6) {
+			if (state.connectNum < 6 && state.globalisLogin) {
 				uni.showToast({
-					title: `杩炴帴澶辫触锛屾灏濊瘯绗�${state.connectNum}娆¤繛鎺,
+					title: `杩炴帴澶辫触锛屾鍦ㄥ皾璇曠${state.connectNum}娆¤繛鎺,
 					icon: 'none'
 				})
-				let num = 1;
-				num++;
-				commit('changereconnectNum', num)
-				dispatch('reconnect')
-			} else {
 				commit('changereconnectNum', 1)
+				dispatch('reconnect')
+			} else if (state.connectNum > 6 && state.globalisLogin) {
+				commit('changereconnectNum', 1)
+				uni.showToast({
+					title: '缃戠粶寮傚父,璇风◢鍚庨噸璇�',
+					icon: 'none'
+				})
+			} else {
+				return
 			}
 		},
 		// 鎺ユ敹鏁版嵁
@@ -256,7 +274,7 @@
 		reconnect({ state, commit, dispatch }) {
 			console.log(state.is_open_socket, '閲嶆柊杩炴帴socket鐘舵��');
 			clearInterval(state.globalIntervalId)
-			if (!state.is_open_socket) {
+			if (!state.is_open_socket && state.globalisLogin) {
 				state.reconnectTimeOut = setInterval(() => {
 					dispatch('websocketInit')
 				}, 5000)

--
Gitblit v1.9.1