fix: 报告 device_id 用 ble.getDeviceId()(修 P2 空归属)+手动入口接入 i18n(P3)

这个提交包含在:
Guoguo
2026-07-18 20:25:57 -07:00
父节点 a7299708e2
当前提交 8e11b2da10
修改 4 个文件,包含 9 行新增4 行删除
+2 -1
查看文件
@@ -175,7 +175,8 @@ Page({
var self = this
var app = getApp()
var mask = self.data.regions || 0x1F
var deviceId = (app.globalData.connectedDevice && app.globalData.connectedDevice.device_id) || null
// Same device-id source the treating page uses (services/ble getDeviceId + currentDevice fallback).
var deviceId = ble.getDeviceId() || (app.globalData.currentDevice && app.globalData.currentDevice.device_id) || null
var scannedAt = Date.now()
function proceed(config) {