pages.json 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  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/index",
  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. }
  44. }, {
  45. "path": "pages/mine/points/pointsDetail",
  46. "style": {
  47. "navigationBarTitleText": "积分明细",
  48. "enablePullDownRefresh": false,
  49. "navigationStyle": "custom"
  50. // "navigationBarBackgroundColor":"#ee2c34",
  51. // "navigationBarTextStyle":"white"
  52. }
  53. }, {
  54. "path": "pages/mine/info/info",
  55. "style": {
  56. "navigationBarTitleText": "我的资料",
  57. "enablePullDownRefresh": false
  58. }
  59. }, {
  60. "path": "pages/mine/my-help/my-help",
  61. "style": {
  62. "navigationBarTitleText": "我的助力",
  63. "enablePullDownRefresh": false
  64. }
  65. }
  66. ,{
  67. "path" : "pages/webview/webview",
  68. "style" :
  69. {
  70. "navigationBarTitleText": "",
  71. "enablePullDownRefresh": false
  72. }
  73. }
  74. ,{
  75. "path" : "pages/auth/auth",
  76. "style" :
  77. {
  78. "navigationBarTitleText": "移动积分授权",
  79. "enablePullDownRefresh": false
  80. }
  81. }
  82. ,{
  83. "path" : "pages/auth/result",
  84. "style" :
  85. {
  86. "navigationBarTitleText": "授权结果",
  87. "enablePullDownRefresh": false
  88. }
  89. }
  90. ,{
  91. "path" : "pages/index/home",
  92. "style" :
  93. {
  94. "navigationBarTitleText": "首页",
  95. "enablePullDownRefresh": false
  96. }
  97. }
  98. ],
  99. "tabBar": {
  100. "color": "#555555",
  101. "backgroundColor": "#FFFFFF",
  102. "borderStyle": "white",
  103. "selectedColor": "#222222",
  104. "list": [
  105. {
  106. "pagePath": "pages/index/home",
  107. "text": "首页",
  108. "selectedIconPath": "static/tarbar/shouye.png",
  109. "iconPath": "static/tarbar/shouye0.png"
  110. },
  111. {
  112. "pagePath": "pages/shop/shop",
  113. "text": "商城",
  114. "selectedIconPath": "static/tarbar/shangcheng.png",
  115. "iconPath": "static/tarbar/shangcheng0.png"
  116. },
  117. {
  118. "pagePath": "pages/mine/mine",
  119. "text": "我的",
  120. "selectedIconPath": "static/tarbar/wode.png",
  121. "iconPath": "static/tarbar/wode0.png"
  122. }
  123. ]
  124. },
  125. "globalStyle": {
  126. "navigationBarTextStyle": "black",
  127. "navigationBarTitleText": "uni-app",
  128. "navigationBarBackgroundColor": "#F8F8F8",
  129. "backgroundColor": "#F8F8F8"
  130. }
  131. }