pages.json 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  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/shop/list",
  8. "style": {
  9. "navigationBarTitleText": "我的店铺",
  10. "enablePullDownRefresh": true,
  11. "backgroundTextStyle": "dark"
  12. }
  13. },
  14. {
  15. "path": "pages/shop/up",
  16. "style": {
  17. "navigationBarTitleText": "数据上报",
  18. "enablePullDownRefresh": false
  19. }
  20. },
  21. {
  22. "path": "pages/index/index",
  23. "style": {
  24. "navigationBarTitleText": "",
  25. "navigationStyle": "custom"
  26. }
  27. },
  28. {
  29. "path": "pages/user/my",
  30. "style": {
  31. "navigationBarTitleText": "我的",
  32. "navigationStyle": "custom"
  33. }
  34. },
  35. {
  36. "path": "pages/shop/apply",
  37. "style": {
  38. "navigationBarTitleText": "店铺开通申请",
  39. "enablePullDownRefresh": false
  40. }
  41. },
  42. {
  43. "path": "pages/travel/detail",
  44. "style": {
  45. "navigationBarTitleText": "内容详情",
  46. "enablePullDownRefresh": false
  47. }
  48. },
  49. {
  50. "path": "pages/other/about",
  51. "style": {
  52. "navigationBarTitleText": "关于我们"
  53. }
  54. },
  55. {
  56. "path": "pages/user/login",
  57. "style": {
  58. "navigationBarTitleText": "授权登陆"
  59. }
  60. },
  61. {
  62. "path": "pages/user/info",
  63. "style": {
  64. "navigationBarTitleText": "个人资料"
  65. }
  66. },
  67. {
  68. "path": "pages/travel/index",
  69. "style": {
  70. "navigationBarTitleText": "景区",
  71. "enablePullDownRefresh": true,
  72. "backgroundTextStyle": "dark"
  73. }
  74. }, {
  75. "path": "pages/government/index",
  76. "style": {
  77. "navigationBarTitleText": "党政服务",
  78. "enablePullDownRefresh": true,
  79. "backgroundTextStyle": "dark"
  80. }
  81. }, {
  82. "path": "pages/government/detail",
  83. "style": {
  84. "navigationBarTitleText": "内容详情",
  85. "enablePullDownRefresh": false
  86. }
  87. }, {
  88. "path": "pages/government/activity",
  89. "style": {
  90. "navigationBarTitleText": "热门活动",
  91. "enablePullDownRefresh": false
  92. }
  93. }, {
  94. "path": "pages/travel/introduction",
  95. "style": {
  96. "navigationBarTitleText": "旅游攻略",
  97. "enablePullDownRefresh": true,
  98. "backgroundTextStyle": "dark"
  99. }
  100. }, {
  101. "path": "pages/travel/route",
  102. "style": {
  103. "navigationBarTitleText": "路线",
  104. "enablePullDownRefresh": false
  105. }
  106. }
  107. ],
  108. "tabBar": {
  109. "color": "#7A7E83",
  110. "selectedColor": "#c74547",
  111. "borderStyle": "black",
  112. "backgroundColor": "#F8F8F8",
  113. "list": [{
  114. "pagePath": "pages/index/index",
  115. "iconPath": "static/tab/home.png",
  116. "selectedIconPath": "static/tab/home_select.png",
  117. "text": "首页"
  118. },
  119. {
  120. "pagePath": "pages/travel/index",
  121. "iconPath": "static/tab/jq.png",
  122. "selectedIconPath": "static/tab/jq_select.png",
  123. "text": "景区"
  124. },
  125. {
  126. "pagePath": "pages/government/index",
  127. "iconPath": "static/tab/zd.png",
  128. "selectedIconPath": "static/tab/zd_select.png",
  129. "text": "党政服务"
  130. },
  131. {
  132. "pagePath": "pages/user/my",
  133. "iconPath": "static/tab/my.png",
  134. "selectedIconPath": "static/tab/my_select.png",
  135. "text": "我的"
  136. }
  137. ]
  138. },
  139. "globalStyle": {
  140. "navigationBarTextStyle": "white",
  141. "navigationBarTitleText": "",
  142. "navigationBarBackgroundColor": "#c74547",
  143. "backgroundColor": "#F8F8F8"
  144. }
  145. }