pages.json 2.7 KB

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