app.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "pages": [
  3. "pages/bookshelf/bookshelf",
  4. "pages/bookstore/bookstore",
  5. "pages/mine/mine",
  6. "pages/readbook/read",
  7. "pages/test/index",
  8. "pages/search/search"
  9. ],
  10. "window": {
  11. "navigationBarTextStyle": "black",
  12. "navigationBarTitleText": "uni-app",
  13. "navigationBarBackgroundColor": "#F8F8F8",
  14. "backgroundColor": "#F8F8F8"
  15. },
  16. "tabBar": {
  17. "list": [
  18. {
  19. "pagePath": "pages/bookshelf/bookshelf",
  20. "text": "书架",
  21. "iconPath": "/static/imgs/tabBar/bookshelf_0.png",
  22. "selectedIconPath": "/static/imgs/tabBar/bookshelf_1.png"
  23. },
  24. {
  25. "pagePath": "pages/bookstore/bookstore",
  26. "text": "书城",
  27. "iconPath": "/static/imgs/tabBar/bookstore_0.png",
  28. "selectedIconPath": "/static/imgs/tabBar/bookstore_1.png"
  29. },
  30. {
  31. "pagePath": "pages/mine/mine",
  32. "text": "我的",
  33. "iconPath": "/static/imgs/tabBar/mine_0.png",
  34. "selectedIconPath": "/static/imgs/tabBar/mine_1.png"
  35. }
  36. ],
  37. "color": "#707070",
  38. "selectedColor": "#2979ff"
  39. },
  40. "usingComponents": {}
  41. }