pages.json 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "usingComponents":{
  7. "van-search": "/wxcomponents/dist/search/index"
  8. },
  9. "navigationBarTitleText": "首页"
  10. }
  11. },
  12. {
  13. "path": "pages/index/hotel",
  14. "style": {
  15. "usingComponents":{
  16. "van-sticky": "/wxcomponents/dist/sticky/index",
  17. "van-nav-bar": "/wxcomponents/dist/nav-bar/index",
  18. "van-search": "/wxcomponents/dist/search/index",
  19. "van-tab": "/wxcomponents/dist/tab/index",
  20. "van-tabs": "/wxcomponents/dist/tabs/index",
  21. "van-dropdown-menu": "/wxcomponents/dist/dropdown-menu/index",
  22. "van-dropdown-item": "/wxcomponents/dist/dropdown-item/index",
  23. "van-row": "/wxcomponents/dist/row/index",
  24. "van-col": "/wxcomponents/dist/col/index",
  25. "van-icon": "/wxcomponents/dist/icon/index"
  26. }
  27. }
  28. },
  29. {
  30. "path": "pages/myone/oneIndex",
  31. "style": {
  32. "usingComponents":{
  33. "van-tab": "/wxcomponents/dist/tab/index",
  34. "van-tabs": "/wxcomponents/dist/tabs/index"
  35. },
  36. "navigationBarTitleText": "发现"
  37. }
  38. },
  39. {
  40. "path": "pages/taBar/index",
  41. "style": {
  42. "navigationBarTitleText": "订单"
  43. }
  44. },
  45. {
  46. "path": "pages/myCenter/index",
  47. "style": {
  48. "navigationBarTitleText": "我的"
  49. }
  50. }
  51. ],
  52. "tabBar": {
  53. "color": "#C0C4CC",
  54. "list": [
  55. {
  56. "pagePath": "pages/index/index",
  57. "text": "首页"
  58. },
  59. {
  60. "pagePath": "pages/myone/oneIndex",
  61. "text": "发现"
  62. },
  63. {
  64. "pagePath": "pages/taBar/index",
  65. "text": "订单"
  66. },
  67. {
  68. "pagePath": "pages/myCenter/index",
  69. "text": "我的"
  70. }
  71. ]
  72. },
  73. "globalStyle": {
  74. "navigationBarTextStyle": "black",
  75. "navigationBarTitleText": "uni-app",
  76. "navigationBarBackgroundColor": "#F8F8F8",
  77. "backgroundColor": "#F8F8F8"
  78. }
  79. }