app.json 858 B

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