pages.json 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. {
  2. "easycom": {
  3. "^u-(.*)": "uview-ui/components/u-$1/u-$1.vue"
  4. },
  5. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  6. {
  7. "path": "pages/index/home",
  8. "style": {
  9. "navigationBarTitleText": "首页"
  10. }
  11. }, {
  12. "path": "pages/introduce/introduce",
  13. "style": {
  14. "navigationBarTitleText": "活动介绍",
  15. "enablePullDownRefresh": false,
  16. "navigationStyle": "custom"
  17. }
  18. }, {
  19. "path": "pages/rank/rank",
  20. "style": {
  21. "navigationBarTitleText": "排行榜",
  22. "enablePullDownRefresh": false,
  23. "navigationStyle": "custom"
  24. }
  25. }, {
  26. "path": "pages/mine/mine",
  27. "style": {
  28. "navigationBarTitleText": "我的",
  29. "enablePullDownRefresh": false
  30. }
  31. }, {
  32. "path": "pages/shop/shop",
  33. "style": {
  34. "navigationBarTitleText": "积分商城",
  35. "enablePullDownRefresh": false,
  36. "navigationStyle": "custom"
  37. }
  38. }, {
  39. "path": "pages/activity/activityDetail",
  40. "style": {
  41. "navigationBarTitleText": "作品详情",
  42. "enablePullDownRefresh": false,
  43. "navigationStyle": "custom"
  44. }
  45. }, {
  46. "path": "pages/mine/points/pointsDetail",
  47. "style": {
  48. "navigationBarTitleText": "积分明细",
  49. "enablePullDownRefresh": false,
  50. "navigationStyle": "custom"
  51. // "navigationBarBackgroundColor":"#ee2c34",
  52. // "navigationBarTextStyle":"white"
  53. }
  54. }, {
  55. "path": "pages/mine/info/info",
  56. "style": {
  57. "navigationBarTitleText": "我的资料",
  58. "enablePullDownRefresh": false
  59. }
  60. }, {
  61. "path": "pages/mine/my-help/my-help",
  62. "style": {
  63. "navigationBarTitleText": "我的助力",
  64. "enablePullDownRefresh": false
  65. }
  66. }, {
  67. "path": "pages/webview/webview",
  68. "style": {
  69. "navigationBarTitleText": "",
  70. "enablePullDownRefresh": false
  71. }
  72. }, {
  73. "path": "pages/auth/result",
  74. "style": {
  75. "navigationBarTitleText": "授权结果",
  76. "enablePullDownRefresh": false
  77. }
  78. }, {
  79. "path": "pages/auth/order",
  80. "style": {
  81. "navigationBarTitleText": "",
  82. "enablePullDownRefresh": false
  83. }
  84. }
  85. ,{
  86. "path" : "pages/webview/createOrder",
  87. "style" :
  88. {
  89. "navigationBarTitleText": "创建订单",
  90. "enablePullDownRefresh": false
  91. }
  92. }
  93. ,{
  94. "path" : "pages/mine/my-help/help-records",
  95. "style" :
  96. {
  97. "navigationBarTitleText": "热力明细",
  98. "enablePullDownRefresh": false
  99. }
  100. }
  101. ,{
  102. "path" : "pages/mine/my-product/my-product",
  103. "style" :
  104. {
  105. "navigationBarTitleText": "我的作品",
  106. "enablePullDownRefresh": false
  107. }
  108. }
  109. ,{
  110. "path" : "pages/webview/auth_result",
  111. "style" :
  112. {
  113. "navigationBarTitleText": "授权结果",
  114. "enablePullDownRefresh": false
  115. }
  116. }
  117. ,{
  118. "path" : "pages/shop/detail",
  119. "style" :
  120. {
  121. "navigationBarTitleText": "商品详情",
  122. "enablePullDownRefresh": false
  123. }
  124. }
  125. ,{
  126. "path" : "pages/webview/point_rule",
  127. "style" :
  128. {
  129. "navigationBarTitleText": "积分兑换规则",
  130. "enablePullDownRefresh": false
  131. }
  132. }
  133. ],
  134. "tabBar": {
  135. "color": "#555555",
  136. "backgroundColor": "#FFFFFF",
  137. "borderStyle": "white",
  138. "selectedColor": "#222222",
  139. "list": [
  140. {
  141. "pagePath": "pages/index/home",
  142. "text": "首页",
  143. "selectedIconPath": "static/tarbar/shouye.png",
  144. "iconPath": "static/tarbar/shouye0.png"
  145. },
  146. {
  147. "pagePath": "pages/shop/shop",
  148. "text": "商城",
  149. "selectedIconPath": "static/tarbar/shangcheng.png",
  150. "iconPath": "static/tarbar/shangcheng0.png"
  151. },
  152. {
  153. "pagePath": "pages/mine/mine",
  154. "text": "我的",
  155. "selectedIconPath": "static/tarbar/wode.png",
  156. "iconPath": "static/tarbar/wode0.png"
  157. }
  158. ]
  159. },
  160. "globalStyle": {
  161. "navigationBarTextStyle": "black",
  162. "navigationBarTitleText": "uni-app",
  163. "navigationBarBackgroundColor": "#F8F8F8",
  164. "backgroundColor": "#F8F8F8"
  165. }
  166. }