pages.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationBarTitleText": "校园综合服务平台"
  7. }
  8. },
  9. {
  10. "path" : "pages/orders/orders",
  11. "style" :
  12. {
  13. "navigationBarTitleText" : "订 单",
  14. "enablePullDownRefresh" : false
  15. }
  16. },
  17. {
  18. "path" : "pages/me/me",
  19. "style" :
  20. {
  21. "navigationBarTitleText" : "我 的",
  22. "enablePullDownRefresh" : false
  23. }
  24. },
  25. {
  26. "path" : "pages/login/login",
  27. "style" :
  28. {
  29. "navigationBarTitleText" : ""
  30. }
  31. }
  32. ],
  33. "globalStyle": {
  34. // 导航栏标题颜色及状态栏前景颜色,仅支持 black/white
  35. "navigationBarTextStyle": "white",
  36. // 导航栏标题文字内容
  37. "navigationBarTitleText": "校园综合服务平台",
  38. // 导航栏背景颜色(同状态栏背景色)
  39. "navigationBarBackgroundColor": "#006eff",
  40. // 下拉显示出来的窗口的背景色
  41. "backgroundColor": "#F8F8F8"
  42. },
  43. //底部导航菜单
  44. "tabBar": {
  45. "backgroundColor": "#fff",
  46. "selectedColor": "#006eff",
  47. "color": "#666",
  48. "list": [
  49. {
  50. "iconPath": "/static/icons/home.png",
  51. "selectedIconPath": "static/icons/home-active.png",
  52. "text": "首页",
  53. "pagePath": "pages/index/index"
  54. },
  55. {
  56. "iconPath": "/static/icons/orders.png",
  57. "selectedIconPath": "static/icons/orders-active.png",
  58. "text": "订单",
  59. "pagePath": "pages/orders/orders"
  60. },
  61. {
  62. "iconPath": "/static/icons/me.png",
  63. "selectedIconPath": "static/icons/me-active.png",
  64. "text": "我的",
  65. "pagePath": "pages/me/me"
  66. }
  67. ]
  68. },
  69. "uniIdRouter": {}
  70. }