pages.json 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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/user/login",
  15. "style": {
  16. "navigationBarTitleText": "授权登陆"
  17. }
  18. },
  19. {
  20. "path": "pages/user/my",
  21. "style": {
  22. "navigationBarTitleText": "我的",
  23. "navigationStyle": "custom"
  24. }
  25. }
  26. ,{
  27. "path" : "pages/travel/index",
  28. "style" :
  29. {
  30. "navigationBarTitleText": "景区",
  31. "enablePullDownRefresh": false
  32. }
  33. }
  34. ,{
  35. "path" : "pages/government/index",
  36. "style" :
  37. {
  38. "navigationBarTitleText": "党政服务",
  39. "enablePullDownRefresh": false
  40. }
  41. }
  42. ,{
  43. "path" : "pages/government/detail",
  44. "style" :
  45. {
  46. "navigationBarTitleText": "政务详情",
  47. "enablePullDownRefresh": false
  48. }
  49. }
  50. ,{
  51. "path" : "pages/travel/detail",
  52. "style" :
  53. {
  54. "navigationBarTitleText": "旅游路线",
  55. "enablePullDownRefresh": false
  56. }
  57. }
  58. ],
  59. "tabBar": {
  60. "color": "#7A7E83",
  61. "selectedColor": "#c74547",
  62. "borderStyle": "black",
  63. "backgroundColor": "#F8F8F8",
  64. "list": [{
  65. "pagePath": "pages/index/index",
  66. "iconPath": "static/tab/home.png",
  67. "selectedIconPath": "static/tab/home_select.png",
  68. "text": "首页"
  69. },
  70. {
  71. "pagePath": "pages/travel/index",
  72. "iconPath": "static/tab/jq.png",
  73. "selectedIconPath": "static/tab/jq_select.png",
  74. "text": "景区"
  75. },
  76. {
  77. "pagePath": "pages/government/index",
  78. "iconPath": "static/tab/zd.png",
  79. "selectedIconPath": "static/tab/zd_select.png",
  80. "text": "党政服务"
  81. },
  82. {
  83. "pagePath": "pages/user/my",
  84. "iconPath": "static/tab/my.png",
  85. "selectedIconPath": "static/tab/my_select.png",
  86. "text": "我的"
  87. }
  88. ]
  89. },
  90. "globalStyle": {
  91. "navigationBarTextStyle": "white",
  92. "navigationBarTitleText": "",
  93. "navigationBarBackgroundColor": "#c74547",
  94. "backgroundColor": "#F8F8F8"
  95. }
  96. }