You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
87 lines
2.1 KiB
87 lines
2.1 KiB
{
|
|
"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
|
|
|
|
{
|
|
"path": "pages/taskList/taskList",
|
|
"style": {
|
|
"navigationBarTitleText": "任务列表",
|
|
"navigationStyle": "custom",
|
|
"navigationBarBackgroundColor":"#FFFFFF",
|
|
"app-plus": {
|
|
"titleNView": false
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"path": "pages/login/login",
|
|
"style": {
|
|
"navigationBarTitleText": "登录页",
|
|
"navigationStyle": "custom"
|
|
}
|
|
},
|
|
{
|
|
"path": "pages/checkList/checkList",
|
|
"style": {
|
|
"navigationBarTitleText": "待检测列表",
|
|
"navigationStyle": "custom",
|
|
"navigationBarBackgroundColor":"#FFFFFF",
|
|
"app-plus": {
|
|
"titleNView": false
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"path" : "pages/processList/processList",
|
|
"style" :
|
|
{
|
|
"navigationBarTitleText": "工序列表",
|
|
"enablePullDownRefresh": false,
|
|
"navigationStyle": "custom",
|
|
"onReachBottomDistance": 100
|
|
}
|
|
|
|
},
|
|
{
|
|
"path" : "pages/taskDetail/taskDetail",
|
|
"style" :
|
|
{
|
|
"navigationBarTitleText": "任务详情",
|
|
"enablePullDownRefresh": false,
|
|
"navigationStyle": "custom"
|
|
}
|
|
|
|
}
|
|
],
|
|
"globalStyle": {
|
|
"navigationBarTextStyle": "black",
|
|
"navigationBarTitleText": "uni-app",
|
|
"navigationBarBackgroundColor": "#F7F8FA",
|
|
"backgroundColor": "#F7F8FA",
|
|
"navigationStyle":"custom",//禁用原生导航
|
|
|
|
"app-plus": {
|
|
"background": "#efeff4",
|
|
"titleNView": false
|
|
}
|
|
},
|
|
"tabBar": {
|
|
"color": "#333333",
|
|
"selectedColor": "#0DC0F4",
|
|
"backgroundColor": "#ffffff",
|
|
"borderStyle": "#ffffff",
|
|
"list": [
|
|
{
|
|
"pagePath": "pages/taskList/taskList",
|
|
"text": "任务",
|
|
"iconPath": "static/t1.png",
|
|
"selectedIconPath": "static/t11.png"
|
|
},
|
|
{
|
|
"pagePath": "pages/checkList/checkList",
|
|
"text": "待检测",
|
|
"iconPath": "static/t2.png",
|
|
"selectedIconPath": "static/t22.png"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
|