12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- {
- "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" : ""
- }
- }
- ],
- "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": {}
- }
|