pages.json 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  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/category/category",
  11. "style": {
  12. "navigationBarTitleText": "分类"
  13. }
  14. },
  15. {
  16. "path": "pages/category/product-list",
  17. "style": {
  18. "navigationBarTitleText": "",
  19. "navigationStyle": "custom",
  20. "navigationBarTextStyle": "white"
  21. }
  22. },
  23. {
  24. "path": "pages/cart/cart",
  25. "style": {
  26. "navigationBarTitleText": "购物车"
  27. }
  28. },
  29. {
  30. "path": "pages/user/user",
  31. "style": {
  32. "navigationBarTitleText": "我的"
  33. }
  34. },
  35. {
  36. "path": "pages/login/social",
  37. "style": {
  38. "navigationBarTitleText": "授权登录"
  39. }
  40. },
  41. {
  42. "path": "pages/login/mobile",
  43. "style": {
  44. "navigationBarTitleText": "手机登录"
  45. }
  46. },
  47. {
  48. "path": "pages/forgot/forgot",
  49. "style": {
  50. "navigationBarTitleText": "忘记密码"
  51. }
  52. },
  53. {
  54. "path": "pages/profile/profile",
  55. "style": {
  56. "navigationBarTitleText": "个人资料"
  57. }
  58. },
  59. {
  60. "path": "pages/setting/setting",
  61. "style": {
  62. "navigationBarTitleText": "账户设置"
  63. }
  64. },
  65. {
  66. "path": "pages/product/product",
  67. "style": {
  68. "navigationBarTitleText": "商品详情"
  69. }
  70. },
  71. {
  72. "path": "pages/checkout/checkout",
  73. "style": {
  74. "navigationBarTitleText": "填写订单"
  75. }
  76. },
  77. {
  78. "path": "pages/order/list",
  79. "style": {
  80. "navigationBarTitleText": "我的订单"
  81. }
  82. },
  83. {
  84. "path": "pages/order/detail",
  85. "style": {
  86. "navigationBarTitleText": "订单详情"
  87. }
  88. },
  89. {
  90. "path": "pages/order/confirm",
  91. "style": {
  92. "navigationBarTitleText": "确认订单"
  93. }
  94. },
  95. {
  96. "path": "pages/address/list",
  97. "style": {
  98. "navigationBarTitleText": "收货地址"
  99. }
  100. },
  101. {
  102. "path": "pages/search/search",
  103. "style": {
  104. "navigationBarTitleText": "搜索"
  105. }
  106. },
  107. {
  108. "path": "pages/address/create",
  109. "style": {
  110. "navigationBarTitleText": "新增地址"
  111. }
  112. },
  113. {
  114. "path": "pages/address/update",
  115. "style": {
  116. "navigationBarTitleText": "修改地址"
  117. }
  118. }
  119. ],
  120. "tabBar": {
  121. "selectedColor": "#333333",
  122. "color": "#bfbfbf",
  123. "list": [
  124. {
  125. "pagePath": "pages/index/index",
  126. "text": "首页",
  127. "iconPath": "/static/images/tabbar/index.png",
  128. "selectedIconPath": "/static/images/tabbar/index-active.png"
  129. },
  130. {
  131. "pagePath": "pages/category/category",
  132. "text": "分类",
  133. "iconPath": "/static/images/tabbar/category.png",
  134. "selectedIconPath": "/static/images/tabbar/category-active.png"
  135. },
  136. {
  137. "pagePath": "pages/cart/cart",
  138. "text": "购物车",
  139. "iconPath": "/static/images/tabbar/cart.png",
  140. "selectedIconPath": "/static/images/tabbar/cart-active.png"
  141. },
  142. {
  143. "pagePath": "pages/user/user",
  144. "text": "我的",
  145. "iconPath": "/static/images/tabbar/user.png",
  146. "selectedIconPath": "/static/images/tabbar/user-active.png"
  147. }
  148. ]
  149. },
  150. "globalStyle": {
  151. "navigationBarTextStyle": "black",
  152. "navigationBarTitleText": "yudao-ui-app",
  153. "navigationBarBackgroundColor": "#ffffff",
  154. "backgroundColor": "#ffffff"
  155. }
  156. }