From d8743368ffda9bc0fb2c6818f695a9a6b1079e57 Mon Sep 17 00:00:00 2001
From: cuiqian2004 <cuiqian2004@163.com>
Date: 星期五, 19 九月 2025 18:22:15 +0800
Subject: [PATCH] laster
---
pages/index/connect.vue | 39 ++++++++++++++++++++-------------------
1 files changed, 20 insertions(+), 19 deletions(-)
diff --git a/pages/index/connect.vue b/pages/index/connect.vue
index 9fcc16b..ff1ed67 100644
--- a/pages/index/connect.vue
+++ b/pages/index/connect.vue
@@ -37,7 +37,7 @@
</view>
<view v-if="connectState == 3" class="button-group">
<a-button type="primary" plain="true" class="button" @click="clickTry">
- {{reconnectFlag ? "閲嶆柊杩炴帴WiFi":"鍐嶈瘯"}}
+ {{reconnectFlag ? "閲嶆柊杩炴帴WiFi":"閲嶈瘯"}}
</a-button>
<a-button type="ghost" class="button" @click="clickCancel">鍙栨秷
</a-button>
@@ -56,7 +56,9 @@
import {
session,
showToast,
- showModal
+ showModal,
+ showError,
+ showInfo
} from "@/comm/utils.js"
import {
Button
@@ -143,7 +145,7 @@
} catch (ex) {
- this.showError(ex)
+ showError(ex)
}
},
checkConnectStatus() {
@@ -181,11 +183,11 @@
const result = res.result || ""
const arCode = result.split(";")
if (arCode.length != 3) {
- showModal("鏃犳晥鐨勪簩缁寸爜锛�, "鎻愮ず")
+ showInfo("鏃犳晥鐨勪簩缁寸爜锛�)
return
}
if (!arCode[0].trim() || !arCode[0].trim()) {
- showModal("鏃犳晥鐨勪簩缁寸爜锛�, "鎻愮ず")
+ showInfo("鏃犳晥鐨勪簩缁寸爜锛�)
return
}
that.ip = arCode[0]
@@ -219,7 +221,7 @@
}
this.connectState = 1
- this.checkConnectVehicle()
+ this.checkConnectVehicle(60)
},
clickStudyMore() {
showToast("鍚庣画鍙戝紑涓�)
@@ -241,7 +243,7 @@
androidWifi.connectWifi(this.wifiSID,
this.wifiPassword
)
- this.checkConnectVehicle()
+ this.checkConnectVehicle(60)
//
} else {
if (first) {
@@ -261,7 +263,7 @@
}
this.connectState = 1
- this.checkConnectVehicle()
+ this.checkConnectVehicle(60)
}
} else {
@@ -285,11 +287,13 @@
async connectVehicle() {
try {
const info = await mtBattery(this.ip)
+ console.log(this.ip)
this.connectState = 2
this.connectedSuccess()
} catch (ex) {
+ console.log("connectVehicle faile",this.ip,ex)
this.connectState = 3
- // this.showError(ex)
+ // showError(ex)
}
},
@@ -336,8 +340,13 @@
})
}, 1000)
},
- checkConnectVehicle() {
+ checkConnectVehicle(sec) {
if (this.unloadFlag) {
+ return
+ }
+ if(sec <= 0)
+ {
+ this.connectState = 3
return
}
checkIpLinkSuccess(this.ip).then((res) => {
@@ -349,18 +358,10 @@
}
}).catch((ex) => {
setTimeout(() => {
- this.checkConnectVehicle()
+ this.checkConnectVehicle(sec- 7)
}, 2000)
})
},
- showError(ex) {
- let exStr = JSON.stringify(ex)
- if (exStr == "{}")
- exStr = ex
- let tip = typeof ex.msg == "string" ? ex.msg : exStr
- showModal(tip, "閿欒", false)
- },
-
}
}
</script>
--
Gitblit v1.9.1