ZhiYeJianKang_PeiXun_APP/pages.json

80 lines
1.8 KiB
JSON
Raw Permalink Normal View History

2025-02-20 15:45:12 +08:00
{
"easycom": {
"^u-(.*)": "uview-ui/components/u-$1/u-$1.vue"
},
"pages": [ //pages数组中第一项表示应用启动页参考https://uniapp.dcloud.io/collocation/pages
{
"path": "pages/login/login",
"style": {
"navigationBarTitleText": "登录",
"enablePullDownRefresh": false
}
},
{
"path": "pages/homepage/homepage",
"style": {
"navigationBarTitleText": "首页",
"enablePullDownRefresh": false
}
},
{
"path": "pages/course/course",
"style": {
"navigationBarTitleText": "课程",
"enablePullDownRefresh": false
}
},
{
"path": "pages/examination/examination",
"style": {
"navigationBarTitleText": "考试",
"enablePullDownRefresh": false
}
},
{
"path": "pages/user/user",
"style": {
"navigationBarTitleText": "个人中心",
"enablePullDownRefresh": false
}
}
],
"globalStyle": {
"navigationBarTextStyle": "white",
"navigationBarTitleText": "",
"navigationBarBackgroundColor": "#0069B8",
"backgroundColor": "#0069B8"
},
"uniIdRouter": {},
"tabBar": {
"color": "#7A7E83",
"selectedColor": "#435950",
"borderStyle": "black",
"backgroundColor": "#ffffff",
"list": [{
"pagePath": "pages/homepage/homepage",
"iconPath": "static/home.png",
"selectedIconPath": "static/homes.png",
"text": "首页"
},
{
"pagePath": "pages/course/course",
"iconPath": "static/course.png",
"selectedIconPath": "static/courses.png",
"text": "课程"
},
{
"pagePath": "pages/examination/examination",
"iconPath": "static/examination.png",
"selectedIconPath": "static/examinations.png",
"text": "考试"
},
{
"pagePath": "pages/user/user",
"iconPath": "static/user.png",
"selectedIconPath": "static/users.png",
"text": "个人中心"
}
]
}
}