0
0

app.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "pages": [
  3. "pages/books/main",
  4. "pages/comments/main",
  5. "pages/me/main",
  6. "pages/detail/main"
  7. ],
  8. "permission": {
  9. "scope.userLocation": {
  10. "desc": "你的位置信息将用于小程序位置接口的效果展示"
  11. }
  12. },
  13. "window": {
  14. "backgroundTextStyle": "light",
  15. "navigationBarBackgroundColor": "#EA5149",
  16. "navigationBarTitleText": "蜗牛图书",
  17. "navigationBarTextStyle": "black",
  18. "enablePullDownRefresh": true
  19. },
  20. "tabBar": {
  21. "list": [
  22. {
  23. "pagePath": "pages/books/main",
  24. "text": "图书",
  25. "iconPath": "static/img/book.png",
  26. "selectedIconPath": "static/img/book-active.png"
  27. },
  28. {
  29. "pagePath": "pages/comments/main",
  30. "text": "评论",
  31. "iconPath": "static/img/todo.png",
  32. "selectedIconPath": "static/img/todo-active.png"
  33. },
  34. {
  35. "pagePath": "pages/me/main",
  36. "text": "我",
  37. "iconPath": "static/img/me.png",
  38. "selectedIconPath": "static/img/me-active.png"
  39. }
  40. ]
  41. }
  42. }