文件
jw-beauty/miniprogram/app.json
T
Guoguo 74b0c5fa86 feat(debug): temporary BLE debug page for on-device verification
- entry in profile menu, visible only while a device is connected
- live FFE4 readout: 7x PD, VBAT, fitting, scan wave marker, run state
- tap a face-map region to fire a 2s single-region treat command
  (verifies region-to-IO mapping on the physical mask)
- wavelength selector (red/ir/uv/yellow) to verify color byte order
- scan command / full-face 2s / stop buttons, hex log of every write
- intentionally not i18n'd; remove page before release
2026-07-28 06:58:03 -07:00

69 行
1.7 KiB
JSON

{
"pages": [
"pages/index/index",
"pages/login/login",
"pages/register/register",
"pages/scan/scan",
"pages/ble-connect/ble-connect",
"pages/bind-success/bind-success",
"pages/wear-check/wear-check",
"pages/treatment-setup/treatment-setup",
"pages/auto-scan/auto-scan",
"pages/treating/treating",
"pages/treatment-done/treatment-done",
"pages/subscribe-prompt/subscribe-prompt",
"pages/subscribe-plans/subscribe-plans",
"pages/subscribe-success/subscribe-success",
"pages/profile/profile",
"pages/history/history",
"pages/help/help",
"pages/contact/contact",
"pages/light-info/light-info",
"pages/manual-treatment/manual-treatment",
"pages/scan-report/scan-report",
"pages/ble-debug/ble-debug"
],
"window": {
"navigationBarBackgroundColor": "#ffffff",
"navigationBarTitleText": "LumiFlow",
"navigationBarTextStyle": "black",
"backgroundColor": "#f5f5f5"
},
"tabBar": {
"color": "#999999",
"selectedColor": "#333333",
"backgroundColor": "#ffffff",
"borderStyle": "black",
"list": [
{
"pagePath": "pages/index/index",
"text": "首页"
},
{
"pagePath": "pages/history/history",
"text": "记录"
},
{
"pagePath": "pages/profile/profile",
"text": "我的"
}
]
},
"permission": {
"scope.bluetooth": {
"desc": "用于连接智能设备"
},
"scope.userLocation": {
"desc": "蓝牙连接需要位置权限"
},
"scope.camera": {
"desc": "用于扫描设备二维码"
}
},
"requiredPrivateInfos": [
"getLocation",
"chooseLocation"
],
"style": "v2",
"sitemapLocation": "sitemap.json"
}