{
|
"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
|
{
|
"path": "pages/login/login",
|
"style": {
|
"navigationStyle": "custom"
|
}
|
},
|
{
|
"path": "pages/home/home",
|
"style": {
|
"navigationBarTitleText": "煤炭销售管理信息系统"
|
}
|
},
|
{
|
"path": "pages/my-application/my-application",
|
"style": {
|
"navigationBarTitleText": "我的申请",
|
"enablePullDownRefresh": true,
|
"onReachBottomDistance": 10 //距离底部多少距离的时候触发
|
}
|
},
|
{
|
"path": "pages/my-todo/my-todo",
|
"style": {
|
"navigationBarTitleText": "我的待办",
|
"enablePullDownRefresh": true,
|
"onReachBottomDistance": 10 //距离底部多少距离的时候触发
|
}
|
},
|
{
|
"path": "pages/my-have-todo/my-have-todo",
|
"style": {
|
"navigationBarTitleText": "我的已办 ",
|
"enablePullDownRefresh": true,
|
"onReachBottomDistance": 10 //距离底部多少距离的时候触发
|
}
|
},
|
{
|
"path": "pages/check-the-schedule/check-the-schedule",
|
"style": {
|
"navigationBarTitleText": "查看进度",
|
"enablePullDownRefresh": false
|
}
|
},
|
{
|
"path": "pages/the-form-data/the-form-data",
|
"style": {
|
"navigationBarTitleText": "表单数据",
|
"enablePullDownRefresh": false
|
}
|
},
|
{
|
"path": "pages/approval-history/approval-history",
|
"style": {
|
"navigationBarTitleText": "审批历史",
|
"enablePullDownRefresh": false
|
}
|
},
|
{
|
"path": "pages/new-application/new-application",
|
"style": {
|
"navigationBarTitleText": "新增申请 ",
|
"enablePullDownRefresh": false
|
}
|
}, {
|
"path": "pages/new-application-form-data/new-application-form-data",
|
"style": {
|
"navigationBarTitleText": "新增申请表单",
|
"enablePullDownRefresh": false
|
}
|
|
}, {
|
"path": "pages/jihua/jihua",
|
"style": {
|
"navigationBarTitleText": "日发运计划"
|
}
|
|
}, {
|
"path": "pages/edit-my-application/edit-my-application",
|
"style": {
|
"navigationBarTitleText": "修改",
|
"enablePullDownRefresh": false
|
}
|
}
|
],
|
"globalStyle": {
|
"navigationBarTextStyle": "white",
|
"navigationBarTitleText": "uni-app",
|
"navigationBarBackgroundColor": "#007AFF",
|
"backgroundColor": "#F8F8F8",
|
// 全局导航栏按钮
|
"app-plus": { //app端特有属性
|
"titleNView": {
|
"buttons": [{ //右侧操作按钮样式定义,是以数组形式定义,可定义多个
|
"float": "right",
|
"color": "#ffffff",
|
"fontSrc": "/static/iconfont/iconfont.ttf",
|
"fontSize": "48rpx",
|
"text": "\ue614",
|
"signType": "menuBtn" // 定义多个按钮的话,可以通过signType属性,区别按钮
|
// "type": "menu",// 默认图标
|
}],
|
"titleSize": "28rpx"
|
}
|
}
|
}
|
}
|