cyy
2025-09-28 fb026e6052b4d843d327312db398cf791ac57ab9
pages/index/connect.vue
@@ -11,14 +11,14 @@
      <view class="content" v-else-if="connectState == 2">
         <view class="title">连接成功</view>
         <view class="content2">
            <image class="img" src="/images/Frame 178.svg" alt=" 图片" />
            <image class="img" src="/images/Frame_178.svg" alt=" 图片" />
            <view>【{{connectedDevice}}】连接成功</view>
         </view>
      </view>
      <view class="content" v-else-if="connectState == 3">
         <view class="title">连接失败</view>
         <view class="content2">
            <image class="img" src="/images/Frame 179.svg" alt=" 图片" />
            <image class="img" src="/images/Frame_179.svg" alt=" 图片" />
            <view class="title">无法连接设备</view>
            <view>请确保车辆开机且未与其他终端配对</view>
         </view>
@@ -29,7 +29,7 @@
            <view>1、请将手机连接到‘{{ip}}’的Wifi网络</view>
            <view>2、连接后回到本应用</view>
            <image class="img-2" src="/images/Frame 180.svg" alt=" 图片" />
            <image class="img-2" src="/images/Frame_180.svg" alt=" 图片" />
         </view>
      </view>
      <view class="content" v-else>
@@ -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>