pages.json 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/bookshelf/bookshelf",
  5. "style": {
  6. "navigationBarTitleText": "书架",
  7. "app-plus": {
  8. "bounce": "none"
  9. }
  10. }
  11. },
  12. {
  13. "path": "pages/bookstore/bookstore",
  14. "style": {
  15. "navigationBarTitleText": "书城",
  16. "app-plus": {
  17. "bounce": "none"
  18. }
  19. }
  20. },
  21. {
  22. "path": "pages/mine/mine",
  23. "style": {
  24. "navigationBarTitleText": "我的",
  25. "app-plus": {
  26. "bounce": "none"
  27. }
  28. }
  29. },
  30. {
  31. "path": "pages/readbook/read",
  32. "style": {
  33. "navigationStyle": "custom",
  34. "enablePullDownRefresh": true,
  35. "onReachBottomDistance": 10
  36. }
  37. },
  38. {
  39. "path": "pages/test/index",
  40. "style": {
  41. "navigationStyle": "custom"
  42. }
  43. },
  44. {
  45. "path" : "pages/search/search",
  46. "style" : {
  47. "navigationBarTitleText": "搜索",
  48. "enablePullDownRefresh" : false
  49. }
  50. }
  51. ],
  52. "tabBar": {
  53. "list": [
  54. {
  55. "pagePath": "pages/bookshelf/bookshelf",
  56. "text": "书架",
  57. "iconPath": "/static/imgs/tabBar/bookshelf_0.png",
  58. "selectedIconPath": "/static/imgs/tabBar/bookshelf_1.png"
  59. },
  60. {
  61. "pagePath": "pages/bookstore/bookstore",
  62. "text": "书城",
  63. "iconPath": "/static/imgs/tabBar/bookstore_0.png",
  64. "selectedIconPath": "/static/imgs/tabBar/bookstore_1.png"
  65. },
  66. {
  67. "pagePath": "pages/mine/mine",
  68. "text": "我的",
  69. "iconPath": "/static/imgs/tabBar/mine_0.png",
  70. "selectedIconPath": "/static/imgs/tabBar/mine_1.png"
  71. }
  72. ],
  73. "color": "#707070",
  74. "selectedColor": "#2979ff"
  75. },
  76. "globalStyle": {
  77. "navigationBarTextStyle": "black",
  78. "navigationBarTitleText": "uni-app",
  79. "navigationBarBackgroundColor": "#F8F8F8",
  80. "backgroundColor": "#F8F8F8"
  81. },
  82. "uniIdRouter": {}
  83. }