pages.json 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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. "path" : "pages/register/register",
  34. "style" :
  35. {
  36. "navigationBarTitleText" : "注 册"
  37. }
  38. }
  39. ],
  40. "globalStyle": {
  41. // 导航栏标题颜色及状态栏前景颜色,仅支持 black/white
  42. "navigationBarTextStyle": "white",
  43. // 导航栏标题文字内容
  44. "navigationBarTitleText": "校园综合服务平台",
  45. // 导航栏背景颜色(同状态栏背景色)
  46. "navigationBarBackgroundColor": "#006eff",
  47. // 下拉显示出来的窗口的背景色
  48. "backgroundColor": "#F8F8F8"
  49. },
  50. //底部导航菜单
  51. "tabBar": {
  52. "backgroundColor": "#fff",
  53. "selectedColor": "#006eff",
  54. "color": "#666",
  55. "list": [
  56. {
  57. "iconPath": "/static/icons/home.png",
  58. "selectedIconPath": "static/icons/home-active.png",
  59. "text": "首页",
  60. "pagePath": "pages/index/index"
  61. },
  62. {
  63. "iconPath": "/static/icons/orders.png",
  64. "selectedIconPath": "static/icons/orders-active.png",
  65. "text": "订单",
  66. "pagePath": "pages/orders/orders"
  67. },
  68. {
  69. "iconPath": "/static/icons/me.png",
  70. "selectedIconPath": "static/icons/me-active.png",
  71. "text": "我的",
  72. "pagePath": "pages/me/me"
  73. }
  74. ]
  75. },
  76. "uniIdRouter": {}
  77. }