[AI Generated]: refactor(*): 保活定时器与连接清理逻辑收口至 app.js,修复 null 安全与注释错误

- 新增 app.startKeepAlive/stopKeepAlive/cleanupConnection,bus 监听自动控制保活与断联清理
- Blue.stop() 收入 cleanupConnection,页面 onHide/onUnload 统一调用
- 修复 replaceNetwork.js seviceList 可能为 undefined 导致崩溃
- 修复 configureDevice_2.js device.mac 为 null 时崩溃
- 修复 replaceNetwork_1.js activeProtocol 无 null 检查及 wifiList 容错
- 修正 configureDevice_4.js 超时注释(3分钟→30秒)
This commit is contained in:
17792275749
2026-04-08 14:56:48 +08:00
parent 5096ceaa53
commit de8fa1fca8
7 changed files with 67 additions and 69 deletions
@@ -114,6 +114,10 @@ Component({
// 获取设备绑定的用户列表
fetchUserList() {
if (!app.globalData.ppScale.device.mac) {
wx.showToast({ title: '设备 MAC 地址为空,请重新连接', icon: 'none' });
return;
}
let sn = app.globalData.ppScale.device.mac.replace(/:/g, '');
$.ajax("weighingScale/v2/select/user", { sn }, "GET", true, "正在获取用户列表...").then(res => {
if (res.result && res.result.length) {
@@ -51,7 +51,7 @@ Component({
otaMessage: '升级初始化中...'
});
// 启动超时保护,3 分钟内未完成则视为失败
// 启动超时保护,30 秒内未完成则视为失败
this._clearOtaTimer();
this._otaTimer = setTimeout(() => {
console.log('OTA 升级超时');
@@ -60,8 +60,8 @@ Component({
// 回调参数:数字(指令状态码)或对象 { progress, isFailed }
activeProtocol.codeOtaUpdate((res, status) => {
console.log('OTA 升级回调:', status);
console.log('OTA 升级回调:', res);
console.log('OTA 升级 status 回调 :', status);
console.log('OTA 升级 res 回调:', res);
// // 已完成(成功或失败)则忽略后续回调
// if (this._otaCompleted) return;
@@ -22,14 +22,17 @@ Component({
title: "正在获取Wi-Fi列表...",
mask: true
});
app.globalData.ppScale.activeProtocol.dataFindSurroundDevice((res) => {
console.log("connectedDevice ===》dataFindSurroundDevice", res);
const activeProtocol = app.globalData.ppScale.activeProtocol;
if (!activeProtocol) {
wx.hideLoading();
this.setData({
wifiList: res
})
})
wx.showToast({ title: '设备未连接,请重试', icon: 'none' });
return;
}
activeProtocol.dataFindSurroundDevice((res) => {
console.log("connectedDevice ===》dataFindSurroundDevice", res);
wx.hideLoading();
this.setData({ wifiList: Array.isArray(res) ? res : [] });
});
},
selectDevice(e) {