exam-h5/pages.json

85 lines
2.0 KiB
JSON
Raw Normal View History

2025-07-16 10:14:15 +08:00
{
"easycom": {
"^u-(.*)": "uview-ui/components/u-$1/u-$1.vue"
},
"pages": [ //pages数组中第一项表示应用启动页参考https://uniapp.dcloud.io/collocation/pages
{
2025-07-29 09:58:59 +08:00
"path": "pages/register/register",
"style": {
"navigationBarTitleText": "注册账号",
"enablePullDownRefresh": false
}
}, {
2025-07-16 10:14:15 +08:00
"path": "pages/login/login",
"style": {
"navigationBarTitleText": "登录",
"enablePullDownRefresh": false
}
}, {
"path": "pages/examlist/examlist",
"style": {
"navigationBarTitleText": "",
"navigationStyle": "custom",
"onReachBottomDistance": 40, //距离底部多远时触发 单位为px
"enablePullDownRefresh": true //设置参数为true
}
}, {
"path": "pages/user/user",
"style": {
"navigationBarTitleText": "",
"navigationStyle": "custom",
"enablePullDownRefresh": false
}
}, {
"path": "pages/forgotPassword/forgotPassword",
"style": {
"navigationBarTitleText": "忘记密码",
"enablePullDownRefresh": false
}
}, {
"path": "pages/addexam/addexam",
"style": {
"navigationBarTitleText": "新增考试",
"enablePullDownRefresh": false
}
2025-07-29 09:58:59 +08:00
}, {
"path": "pages/HistoryExam/HistoryExam",
"style": {
"navigationBarTitleText": "历史考试成绩"
}
},
{
"path" : "pages/SimulatedExam/SimulatedExam",
"style" :
{
"navigationBarTitleText" : "模拟考试"
}
2025-07-16 10:14:15 +08:00
}
],
"globalStyle": {
"navigationBarTextStyle": "white",
"navigationBarTitleText": "",
"navigationBarBackgroundColor": "#4C7BC9",
"backgroundColor": "#4C7BC9"
},
"uniIdRouter": {},
"tabBar": {
"color": "#7A7E83",
"selectedColor": "#435950",
"borderStyle": "black",
"backgroundColor": "#ffffff",
"list": [{
"pagePath": "pages/examlist/examlist",
"iconPath": "static/homepagew.png",
"selectedIconPath": "static/homepagews.png",
"text": "首页"
},
{
"pagePath": "pages/user/user",
"iconPath": "static/userw.png",
"selectedIconPath": "static/users.png",
"text": "我的"
}
]
}
}