pages.json 2.6 KB

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