pages.json 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationBarTitleText": "靖安民宿"
  7. }
  8. }, {
  9. "path": "pages/my/my",
  10. "style": {
  11. "navigationBarTitleText": "我的",
  12. "enablePullDownRefresh": false
  13. }
  14. }, {
  15. "path": "pages/search/search",
  16. "style": {
  17. "navigationBarTitleText": "服务大厅",
  18. "enablePullDownRefresh": false
  19. }
  20. }, {
  21. "path": "pages/setMeal/setMeal",
  22. "style": {
  23. "navigationBarTitleText": "精品套餐",
  24. "enablePullDownRefresh": false
  25. }
  26. }, {
  27. "path": "pages/set/set",
  28. "style": {
  29. "navigationBarTitleText": "设置",
  30. "enablePullDownRefresh": false
  31. }
  32. }, {
  33. "path": "pages/common/common",
  34. "style": {
  35. "navigationBarTitleText": "常用旅客",
  36. "enablePullDownRefresh": false
  37. }
  38. }, {
  39. "path": "pages/addOrEdit/addOrEdit",
  40. "style": {
  41. "navigationBarTitleText": "添加旅客",
  42. "enablePullDownRefresh": false
  43. }
  44. }, {
  45. "path": "pages/orderManage/orderManage",
  46. "style": {
  47. "navigationBarTitleText": "订单",
  48. "enablePullDownRefresh": false
  49. }
  50. }, {
  51. "path": "pages/detail/detail",
  52. "style": {
  53. "navigationBarTitleText": "民宿详情",
  54. "enablePullDownRefresh": false
  55. }
  56. }
  57. ],
  58. "tabBar": {
  59. "color": "#A6A6A6",
  60. "selectedColor": "#096562",
  61. "borderStyle": "black",
  62. "backgroundColor": "#ffffff",
  63. "list": [{
  64. "pagePath": "pages/index/index",
  65. "iconPath": "static/images/index.png",
  66. "selectedIconPath": "static/images/index-active.png",
  67. "text": "首页"
  68. },
  69. // {
  70. // "pagePath": "pages/setMeal/setMeal",
  71. // "iconPath": "static/images/setMeal.png",
  72. // "selectedIconPath": "static/images/setMeal-active.png",
  73. // "text": "套餐"
  74. // },
  75. // {
  76. // "pagePath": "pages/search/search",
  77. // "iconPath": "static/images/search.png",
  78. // "selectedIconPath": "static/images/search-active.png",
  79. // "text": "服务"
  80. // },
  81. {
  82. "pagePath": "pages/my/my",
  83. "iconPath": "static/images/my.png",
  84. "selectedIconPath": "static/images/my-active.png",
  85. "text": "我的"
  86. }
  87. ]
  88. },
  89. "globalStyle": {
  90. "navigationBarTextStyle": "black",
  91. "navigationBarTitleText": "靖安民宿",
  92. "navigationBarBackgroundColor": "#F8F8F8",
  93. "backgroundColor": "#F8F8F8"
  94. },
  95. "uniIdRouter": {}
  96. }