pages.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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. ],
  28. "tabBar": {
  29. "color": "#A6A6A6",
  30. "selectedColor": "#1E7DFB",
  31. "borderStyle": "black",
  32. "backgroundColor": "#ffffff",
  33. "list": [{
  34. "pagePath": "pages/index/index",
  35. "iconPath": "static/images/index.png",
  36. "selectedIconPath": "static/images/index-active.png",
  37. "text": "首页"
  38. }, {
  39. "pagePath": "pages/setMeal/setMeal",
  40. "iconPath": "static/images/setMeal.png",
  41. "selectedIconPath": "static/images/setMeal-active.png",
  42. "text": "套餐"
  43. },
  44. {
  45. "pagePath": "pages/search/search",
  46. "iconPath": "static/images/search.png",
  47. "selectedIconPath": "static/images/search-active.png",
  48. "text": "服务"
  49. },
  50. {
  51. "pagePath": "pages/my/my",
  52. "iconPath": "static/images/my.png",
  53. "selectedIconPath": "static/images/my-active.png",
  54. "text": "我的"
  55. }
  56. ]
  57. },
  58. "globalStyle": {
  59. "navigationBarTextStyle": "black",
  60. "navigationBarTitleText": "靖安民宿",
  61. "navigationBarBackgroundColor": "#F8F8F8",
  62. "backgroundColor": "#F8F8F8"
  63. },
  64. "uniIdRouter": {}
  65. }