123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "校园综合服务平台"
- }
- },
- {
- "path" : "pages/orders/orders",
- "style" :
- {
- "navigationBarTitleText" : "订 单",
- "enablePullDownRefresh" : false
- }
- },
- {
- "path" : "pages/me/me",
- "style" :
- {
- "navigationBarTitleText" : "我 的",
- "enablePullDownRefresh" : false
- }
- },
- {
- "path" : "pages/login/login",
- "style" :
- {
- "navigationBarTitleText" : "登 录"
- }
- },
- {
- "path" : "pages/register/register",
- "style" :
- {
- "navigationBarTitleText" : "注 册"
- }
- },
- {
- "path" : "pages/preOrder/preOrder",
- "style" :
- {
- "navigationBarTitleText" : "下单"
- }
- },
- {
- "path" : "pages/address/address",
- "style" :
- {
- "navigationBarTitleText" : "我的地址"
- }
- },
- {
- "path" : "pages/detail/detail",
- "style" :
- {
- "navigationBarTitleText" : "订单详情"
- }
- },
- {
- "path" : "pages/introduce/introduce",
- "style" :
- {
- "navigationBarTitleText" : "平台介绍"
- }
- },
- {
- "path" : "pages/agreement/agreement",
- "style" :
- {
- "navigationBarTitleText" : "用户协议"
- }
- },
- {
- "path" : "pages/person/person",
- "style" :
- {
- "navigationBarTitleText" : "个人介绍"
- }
- },
- {
- "path" : "pages/certification/certification",
- "style" :
- {
- "navigationBarTitleText" : "骑手认证"
- }
- },
- {
- "path" : "pages/acceptOrders/acceptOrders",
- "style" :
- {
- "navigationBarTitleText" : "骑手订单"
- }
- },
- {
- "path" : "pages/records/records",
- "style" :
- {
- "navigationBarTitleText" : "收支明细"
- }
- },
- {
- "path" : "pages/wallet/wallet",
- "style" :
- {
- "navigationBarTitleText" : "钱 包"
- }
- },
- {
- "path" : "pages/charge/charge",
- "style" :
- {
- "navigationBarTitleText" : "充 值"
- }
- },
- {
- "path" : "pages/comment/comment",
- "style" :
- {
- "navigationBarTitleText" : "订单评价"
- }
- },
- {
- "path" : "pages/myComment/myComment",
- "style" :
- {
- "navigationBarTitleText" : "评价中心"
- }
- }
- ],
- "globalStyle": {
- // 导航栏标题颜色及状态栏前景颜色,仅支持 black/white
- "navigationBarTextStyle": "white",
- // 导航栏标题文字内容
- "navigationBarTitleText": "校园综合服务平台",
- // 导航栏背景颜色(同状态栏背景色)
- "navigationBarBackgroundColor": "#006eff",
- // 下拉显示出来的窗口的背景色
- "backgroundColor": "#F8F8F8"
- },
- //底部导航菜单
- "tabBar": {
- "backgroundColor": "#fff",
- "selectedColor": "#006eff",
- "color": "#666",
- "list": [
- {
- "iconPath": "/static/icons/home.png",
- "selectedIconPath": "static/icons/home-active.png",
- "text": "首页",
- "pagePath": "pages/index/index"
- },
- {
- "iconPath": "/static/icons/orders.png",
- "selectedIconPath": "static/icons/orders-active.png",
- "text": "订单",
- "pagePath": "pages/orders/orders"
- },
- {
- "iconPath": "/static/icons/me.png",
- "selectedIconPath": "static/icons/me-active.png",
- "text": "我的",
- "pagePath": "pages/me/me"
- }
- ]
- },
- "uniIdRouter": {}
- }
|