class_hour_record/app.json

48 lines
1.3 KiB
JSON

{
"pages": [
"pages/login/index",
"pages/record/index",
"pages/report/index",
"pages/student/index",
"pages/user/index"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#ffffff",
"navigationBarTitleText": "轻课记事",
"navigationBarTextStyle": "black"
},
"tabBar": {
"color": "#999999",
"selectedColor": "#3B82F6",
"backgroundColor": "#ffffff",
"borderStyle": "black",
"list": [
{
"pagePath": "pages/record/index",
"text": "课时录入",
"iconPath": "./assets/tabbar/record.png",
"selectedIconPath": "./assets/tabbar/record-active.png"
},
{
"pagePath": "pages/report/index",
"text": "数据查看",
"iconPath": "./assets/tabbar/report.png",
"selectedIconPath": "./assets/tabbar/report-active.png"
},
{
"pagePath": "pages/student/index",
"text": "学员管理",
"iconPath": "./assets/tabbar/student.png",
"selectedIconPath": "./assets/tabbar/student-active.png"
},
{
"pagePath": "pages/user/index",
"text": "个人中心",
"iconPath": "./assets/tabbar/user.png",
"selectedIconPath": "./assets/tabbar/user-active.png"
}
]
}
}