app.json 943 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "pages": [
  3. "pages/index/index",
  4. "pages/home/home"
  5. ],
  6. "subPackages": [],
  7. "window": {
  8. "navigationBarTextStyle": "black",
  9. "navigationBarTitleText": "你好啊",
  10. "navigationBarBackgroundColor": "#ff0000",
  11. "enablePullDownRefresh": true,
  12. "backgroundTextStyle": "light"
  13. },
  14. "tabBar": {
  15. "color": "#000000",
  16. "selectedColor": "#ff0000",
  17. "borderStyle": "black",
  18. "backgroundColor": "#ffffff",
  19. "list": [
  20. {
  21. "pagePath": "pages/index/index",
  22. "text": "基础",
  23. "iconPath": "/static/me.png",
  24. "selectedIconPath": "/static/me_actived.png"
  25. },
  26. {
  27. "pagePath": "pages/home/home",
  28. "text": "首页",
  29. "iconPath": "/static/home.png",
  30. "selectedIconPath": "/static/home_actived.png"
  31. }
  32. ]
  33. },
  34. "usingComponents": {
  35. "van-button": "/wxcomponents/vant/button/index",
  36. "van-rate": "/wxcomponents/vant/rate/index"
  37. }
  38. }