pages.json 2.2 KB

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