pages.json 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationBarTitleText": "瑞鲸物流",
  7. "navigationStyle": "custom"
  8. }
  9. },
  10. {
  11. "path": "pages/order/index",
  12. "style": {
  13. "navigationBarTitleText": "",
  14. "navigationStyle": "custom"
  15. }
  16. },
  17. {
  18. "path": "pages/mine/mine",
  19. "style": {
  20. "navigationBarTitleText": "我的",
  21. "navigationStyle": "custom"
  22. }
  23. },
  24. {
  25. "path": "pages/logistics/index",
  26. "style": {
  27. "navigationBarTitleText": "物流轨迹"
  28. }
  29. },
  30. {
  31. "path": "pages/search/search",
  32. "style": {
  33. "navigationBarTitleText": "",
  34. "transparentTitle": "always",
  35. "navigationStyle": "custom"
  36. }
  37. },
  38. {
  39. "path": "pages/mine/settlementCode",
  40. "style": {
  41. "navigationBarTitleText": "到付月结码"
  42. }
  43. },
  44. {
  45. "path": "pages/mine/login",
  46. "style": {
  47. "navigationBarTitleText": "登录"
  48. }
  49. },
  50. {
  51. "path": "pages/about/index",
  52. "style": {
  53. "navigationBarTitleText": "关于我们"
  54. }
  55. },
  56. {
  57. "path": "pages/order/create_order",
  58. "style": {
  59. "navigationBarTitleText": "创建订单"
  60. }
  61. },
  62. {
  63. "path": "pages/order/order_detail",
  64. "style": {
  65. "navigationBarTitleText": "订单详情"
  66. }
  67. }
  68. ],
  69. "subPackages": [
  70. {
  71. "root": "pages/webView",
  72. "name": "webView",
  73. "pages": [{
  74. "path": "webView",
  75. "style": {
  76. "navigationBarTitleText": ""
  77. }
  78. }]
  79. },
  80. {
  81. "root": "pages/address",
  82. "name": "address",
  83. "pages": [{
  84. "path": "address_list",
  85. "style": {
  86. "navigationBarTitleText": "地址薄",
  87. "enablePullDownRefresh": true
  88. }
  89. },
  90. {
  91. "path": "edit",
  92. "style": {
  93. "navigationBarTitleText": "新增地址"
  94. }
  95. }
  96. ]
  97. }
  98. ],
  99. "globalStyle": {
  100. "navigationBarTextStyle": "black",
  101. "navigationBarTitleText": "uni-app",
  102. "navigationBarBackgroundColor": "#fff",
  103. "backgroundColor": "#F5F7FA"
  104. },
  105. "tabBar": {
  106. "color": "#333333",
  107. "selectedColor": "#1B64F0",
  108. "borderStyle": "black",
  109. "backgroundColor": "#ffffff",
  110. "list": [{
  111. "pagePath": "pages/index/index",
  112. "selectedIconPath": "static/img/tabs/home_active.png",
  113. "iconPath": "static/img/tabs/home.png",
  114. "text": "首页"
  115. }, {
  116. "pagePath": "pages/order/index",
  117. "selectedIconPath": "/static/img/tabs/order_active.png",
  118. "iconPath": "/static/img/tabs/order.png",
  119. "text": "订单"
  120. }, {
  121. "pagePath": "pages/mine/mine",
  122. "selectedIconPath": "static/img/tabs/user_active.png",
  123. "iconPath": "static/img/tabs/user.png",
  124. "text": "我的"
  125. }]
  126. },
  127. "uniIdRouter": {}
  128. }