文件
jw-beauty/miniprogram/app.json
T
Guoguo 5064cf119d fix(ui): polish miniprogram and admin console details
小程序修复:
- 首页/我的/记录页移除自定义头部,使用原生导航栏
- tabBar '护理记录' 改为 '记录'
- 智能模式跳转auto-scan页面(不再跳过)
- 扫码区域尺寸 300→360rpx,图标 100→120rpx
- 护理中倒计时 120→144rpx
- 完成页图标 120→140rpx
- 完成页时长格式 '10分0秒' → '10分钟'
- 蓝牙连接 '连接中' → '点击连接'
- 订阅套餐默认选中年卡
- 订阅成功页改为动态数据(非硬编码)
- 我的页增加退出登录按钮
- 护理记录日期支持'今天/昨天'相对格式
- 扫描进度居中
- 锁定模式图标加灰度滤镜

管理后台修复:
- 所有页面移除重复页面标题
- 仪表盘统计卡片改为垂直布局
- 快捷操作图标统一粉色+箭头
- 设备管理搜索placeholder和库存badge修正
- 用户管理头像、次后缀、月卡/试用badge颜色修正
- 订阅管理stat背景改白色、过期改红色、tab切换修复
- 护理记录模式badge修正
- 操作日志改为平铺列表
- 系统设置开关改绿色、表单改水平布局
- 全局背景色 #f5f5f5 → #f0f2f5
2026-04-23 01:18:50 +08:00

63 行
1.5 KiB
JSON

{
"pages": [
"pages/index/index",
"pages/login/login",
"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"
],
"window": {
"navigationBarBackgroundColor": "#ffffff",
"navigationBarTitleText": "光子美容仪",
"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"
}