app_evaluating/pages.json

133 lines
3.0 KiB
JSON
Raw Normal View History

2023-02-07 19:27:48 +08:00
{
"pages": [ //pages数组中第一项表示应用启动页参考https://uniapp.dcloud.io/collocation/pages
{
"path": "pages/login/index",
"style": {
"navigationStyle": "custom"
}
},
{
"path": "pages/index/indexOne",
"style": {
"navigationBarTitleText": "首页"
}
},
{
"path": "pages/index/index",
"style": {
"navigationBarTitleText": "当前任务",
"enablePullDownRefresh": true,
"app-plus": {
"pullToRefresh": {
"color": "#008B8B"
}
}
}
},
{
"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": "历史任务",
"enablePullDownRefresh": true,
"app-plus": {
"pullToRefresh": {
"color": "#008B8B"
}
}
}
}, {
"path": "pages/evaluation/missionDetail",
"style": {
"navigationBarTitleText": "详情"
}
}, {
"path": "pages/mine/changePwdPage",
"style": {
"navigationBarTitleText": "修改密码"
}
}, {
"path": "pages/mine/changeMineInfo",
"style": {
"navigationBarTitleText": "修改个人信息"
}
}, {
"path": "pages/temp/tempList",
"style": {
"navigationBarTitleText": "历史任务",
"enablePullDownRefresh": true,
"app-plus": {
"pullToRefresh": {
"color": "#008B8B"
}
}
}
}, {
"path": "pages/temp/doTempEval",
"style": {
"navigationBarTitleText": "暂存任务"
}
}, {
"path": "pages/index/indexTwo",
"style": {
"navigationBarTitleText": "测评任务"
}
}
],
"globalStyle": {
"navigationBarTextStyle": "white",
"navigationBarTitleText": "uni-app",
"navigationBarBackgroundColor": "#008B8B",
"backgroundColor": "#008B8B"
},
"tabBar": {
"selectedColor": "#008B8B",
"color": "#555555",
"list": [{
"pagePath": "pages/index/indexOne",
"text": "首页",
"iconPath": "static/tabbar/ic_miss_no.png",
"selectedIconPath": "static/tabbar/ic_miss_sel.png"
},
// {
// "pagePath": "pages/evaluation/mineEvPage",
// "text": "历史任务",
// "iconPath": "static/tabbar/ic_his_no.png",
// "selectedIconPath": "static/tabbar/ic_his_sel.png"
// },
// {
// "pagePath": "pages/temp/tempList",
// "text": "暂存任务",
// "iconPath": "static/tabbar/ic_temp_no.png",
// "selectedIconPath": "static/tabbar/ic_temp_sel.png"
// },
{
"pagePath": "pages/mine/index",
"text": "我的",
"iconPath": "static/tabbar/ic_mine_no.png",
"selectedIconPath": "static/tabbar/ic_mine_sel.png"
}
]
}
2020-01-09 16:29:09 +08:00
}