pages.json 4.4 KB

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