pages.json 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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. "navigationStyle": "default",
  17. "app-plus": {
  18. "bounce": "none"
  19. }
  20. }
  21. },
  22. {
  23. "path": "pages/mine/mine",
  24. "navigationBarTitleText": "我的",
  25. "style": {
  26. "navigationStyle": "default",
  27. "app-plus": {
  28. "bounce": "none"
  29. }
  30. }
  31. },
  32. {
  33. "path": "pages/readbook/read",
  34. "style": {
  35. "navigationStyle": "default",
  36. "navigationBarTitleText": "",
  37. "enablePullDownRefresh": true,
  38. "onReachBottomDistance": 10
  39. }
  40. },
  41. {
  42. "path": "pages/test/index",
  43. "style": {
  44. "navigationStyle": "default"
  45. }
  46. },
  47. {
  48. "path" : "pages/search/search",
  49. "style" : {
  50. "navigationBarTitleText": "搜索",
  51. "enablePullDownRefresh" : false
  52. }
  53. },
  54. {
  55. "path" : "pages/bookdetails/bookdetails",
  56. "style" : {
  57. "navigationBarTitleText" : "书详情"
  58. }
  59. }
  60. ],
  61. "tabBar": {
  62. "list": [
  63. {
  64. "pagePath": "pages/bookshelf/bookshelf",
  65. "text": "书架",
  66. "iconPath": "/static/imgs/tabBar/bookshelf_0.png",
  67. "selectedIconPath": "/static/imgs/tabBar/bookshelf_1.png"
  68. },
  69. {
  70. "pagePath": "pages/bookstore/bookstore",
  71. "text": "书城",
  72. "iconPath": "/static/imgs/tabBar/bookstore_0.png",
  73. "selectedIconPath": "/static/imgs/tabBar/bookstore_1.png"
  74. },
  75. {
  76. "pagePath": "pages/mine/mine",
  77. "text": "我的",
  78. "iconPath": "/static/imgs/tabBar/mine_0.png",
  79. "selectedIconPath": "/static/imgs/tabBar/mine_1.png"
  80. }
  81. ],
  82. "color": "#707070",
  83. "selectedColor": "#2979ff"
  84. },
  85. "globalStyle": {
  86. "navigationBarTextStyle": "black",
  87. "navigationBarTitleText": "uni-app",
  88. "navigationBarBackgroundColor": "#F8F8F8",
  89. "backgroundColor": "#F8F8F8"
  90. },
  91. "uniIdRouter": {}
  92. }