app_evaluating/pages.json

101 lines
2.2 KiB
JSON
Raw Normal View History

2020-01-09 16:29:09 +08:00
{
"pages": [ //pages数组中第一项表示应用启动页参考https://uniapp.dcloud.io/collocation/pages
{
"path": "pages/login/index",
"style": {
"navigationStyle": "custom"
}
},
{
"path": "pages/index/index",
"style": {
"navigationBarTitleText": "当前任务",
2020-01-10 14:30:31 +08:00
"enablePullDownRefresh": true,
"app-plus": {
"pullToRefresh": {
"color": "#008B8B"
}
}
2020-01-09 16:29:09 +08:00
}
},
{
"path": "pages/mine/index",
"style": {
"navigationBarTitleText": "我的"
}
},
{
"path": "pages/evaluation/index",
"style": {
"navigationBarTitleText": "测评"
}
}, {
"path": "pages/evaluation/doEvaluation",
"style": {
"navigationBarTitleText": "测评"
}
}, {
"path": "pages/mine/changePwdPage",
"style": {
"navigationBarTitleText": "修改密码"
}
}, {
"path": "pages/evaluation/mineEvPage",
"style": {
"navigationBarTitleText": "历史任务",
2020-01-10 14:30:31 +08:00
"enablePullDownRefresh": true,
"app-plus": {
"pullToRefresh": {
"color": "#008B8B"
}
}
2020-01-09 16:29:09 +08:00
}
}, {
"path": "pages/evaluation/missionDetail",
"style": {
"navigationBarTitleText": "详情"
}
}, {
"path": "pages/mine/changePwdPage",
"style": {
"navigationBarTitleText": "修改密码"
}
}, {
"path": "pages/mine/changeMineInfo",
"style": {
"navigationBarTitleText": "修改个人信息"
}
}
],
"globalStyle": {
2020-01-09 17:45:45 +08:00
"navigationBarTextStyle": "white",
2020-01-09 16:29:09 +08:00
"navigationBarTitleText": "uni-app",
2020-01-09 17:45:45 +08:00
"navigationBarBackgroundColor": "#008B8B",
"backgroundColor": "#008B8B"
2020-01-09 16:29:09 +08:00
},
"tabBar": {
2020-01-10 14:30:31 +08:00
"selectedColor": "#008B8B",
"color": "#555555",
2020-01-09 16:29:09 +08:00
"list": [{
"pagePath": "pages/index/index",
"text": "当前任务",
2020-01-10 14:30:31 +08:00
"iconPath": "static/tabbar/ic_miss_no.png",
"selectedIconPath": "static/tabbar/ic_miss_sel.png"
2020-01-09 16:29:09 +08:00
},
{
"pagePath": "pages/mine/index",
"text": "我的",
"iconPath": "static/tabbar/ic_mine_no.png",
"selectedIconPath": "static/tabbar/ic_mine_sel.png"
}
]
}
}
2020-01-09 17:45:45 +08:00
// ,
// {
// "pagePath": "pages/evaluation/mineEvPage",
// "text": "历史任务",
// "iconPath": "static/tabbar/ic_cur_no.png",
// "selectedIconPath": "static/tabbar/ic_cur_sel.png"
// },