pages.json 3.3 KB

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