0
0

app.json 919 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "pages": [
  3. "pages/books/main",
  4. "pages/comments/main",
  5. "pages/me/main",
  6. "pages/detail/main"
  7. ],
  8. "window": {
  9. "backgroundTextStyle": "light",
  10. "navigationBarBackgroundColor": "#EA5149",
  11. "navigationBarTitleText": "蜗牛图书",
  12. "navigationBarTextStyle": "black",
  13. "enablePullDownRefresh": true
  14. },
  15. "tabBar": {
  16. "list": [
  17. {
  18. "pagePath": "pages/books/main",
  19. "text": "图书",
  20. "iconPath": "static/img/book.png",
  21. "selectedIconPath": "static/img/book-active.png"
  22. },
  23. {
  24. "pagePath": "pages/comments/main",
  25. "text": "评论",
  26. "iconPath": "static/img/todo.png",
  27. "selectedIconPath": "static/img/todo-active.png"
  28. },
  29. {
  30. "pagePath": "pages/me/main",
  31. "text": "我",
  32. "iconPath": "static/img/me.png",
  33. "selectedIconPath": "static/img/me-active.png"
  34. }
  35. ]
  36. }
  37. }