新功能: - 账单筛选统计:多维度筛选面板 + 保存方案 + 结果统计 - 通知公告:系统公告/群组通知/个人提醒 + 通知中心页面 - 管理员后台:数据看板 + 用户管理 + 发布公告 Bug 修复: - 统计页 fetchPrevMonthData/fetchMaxSingle 添加 group_id - 群组视图添加 t.group_id 过滤,防止私人数据泄露 - 通知列表添加群组通知条件 - 通知标记已读添加错误处理 - 管理员 API 添加 affectedRows 检查 - 筛选面板金额为 0 时正确回填 - profile onShow 补充 userStore.fetchUserInfo - 全系统样式修复(overflow/box-sizing)
133 lines
3.2 KiB
JSON
133 lines
3.2 KiB
JSON
{
|
|
"pages": [
|
|
{
|
|
"path": "pages/index/index",
|
|
"style": {
|
|
"navigationStyle": "custom",
|
|
"navigationBarTitleText": "小菜记账",
|
|
"enablePullDownRefresh": true
|
|
}
|
|
},
|
|
{
|
|
"path": "pages/add/index",
|
|
"style": {
|
|
"navigationStyle": "custom",
|
|
"navigationBarTitleText": "记一笔"
|
|
}
|
|
},
|
|
{
|
|
"path": "pages/stats/index",
|
|
"style": {
|
|
"navigationStyle": "custom",
|
|
"navigationBarTitleText": "统计分析",
|
|
"enablePullDownRefresh": true
|
|
}
|
|
},
|
|
{
|
|
"path": "pages/bills/index",
|
|
"style": {
|
|
"navigationStyle": "custom",
|
|
"navigationBarTitleText": "全部账单",
|
|
"enablePullDownRefresh": true
|
|
}
|
|
},
|
|
{
|
|
"path": "pages/profile/index",
|
|
"style": {
|
|
"navigationStyle": "custom",
|
|
"navigationBarTitleText": "我的"
|
|
}
|
|
},
|
|
{
|
|
"path": "pages/category-manage/index",
|
|
"style": {
|
|
"navigationStyle": "custom",
|
|
"navigationBarTitleText": "分类管理"
|
|
}
|
|
},
|
|
{
|
|
"path": "pages/budget/index",
|
|
"style": {
|
|
"navigationStyle": "custom",
|
|
"navigationBarTitleText": "预算设置"
|
|
}
|
|
},
|
|
{
|
|
"path": "pages/profile-edit/index",
|
|
"style": {
|
|
"navigationStyle": "custom",
|
|
"navigationBarTitleText": "编辑资料"
|
|
}
|
|
},
|
|
{
|
|
"path": "pages/group-manage/index",
|
|
"style": {
|
|
"navigationStyle": "custom",
|
|
"navigationBarTitleText": "一起记"
|
|
}
|
|
},
|
|
{
|
|
"path": "pages/notifications/index",
|
|
"style": {
|
|
"navigationStyle": "custom",
|
|
"navigationBarTitleText": "通知中心",
|
|
"enablePullDownRefresh": false
|
|
}
|
|
},
|
|
{
|
|
"path": "pages/admin/index",
|
|
"style": {
|
|
"navigationStyle": "custom",
|
|
"navigationBarTitleText": "管理后台"
|
|
}
|
|
},
|
|
{
|
|
"path": "pages/admin/users",
|
|
"style": {
|
|
"navigationStyle": "custom",
|
|
"navigationBarTitleText": "用户管理",
|
|
"enablePullDownRefresh": false
|
|
}
|
|
}
|
|
],
|
|
"globalStyle": {
|
|
"navigationBarTextStyle": "black",
|
|
"navigationBarTitleText": "小菜记账",
|
|
"navigationBarBackgroundColor": "#FFF8F0",
|
|
"backgroundColor": "#FFF8F0",
|
|
"backgroundTextStyle": "dark"
|
|
},
|
|
"tabBar": {
|
|
"color": "#BFB3B3",
|
|
"selectedColor": "#FF8C69",
|
|
"backgroundColor": "#FFF8F0",
|
|
"borderStyle": "white",
|
|
"list": [
|
|
{
|
|
"pagePath": "pages/index/index",
|
|
"text": "首页",
|
|
"iconPath": "static/icons/home.png",
|
|
"selectedIconPath": "static/icons/home-active.png"
|
|
},
|
|
{
|
|
"pagePath": "pages/stats/index",
|
|
"text": "统计",
|
|
"iconPath": "static/icons/chart.png",
|
|
"selectedIconPath": "static/icons/chart-active.png"
|
|
},
|
|
{
|
|
"pagePath": "pages/bills/index",
|
|
"text": "账单",
|
|
"iconPath": "static/icons/bill.png",
|
|
"selectedIconPath": "static/icons/bill-active.png"
|
|
},
|
|
{
|
|
"pagePath": "pages/profile/index",
|
|
"text": "我的",
|
|
"iconPath": "static/icons/user.png",
|
|
"selectedIconPath": "static/icons/user-active.png"
|
|
}
|
|
]
|
|
}
|
|
}
|