pages.json 3.2 KB

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