app.json 853 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "pages": [
  3. "pages/index/index",
  4. "pages/login/login",
  5. "pages/my/my"
  6. ],
  7. "subPackages": [],
  8. "window": {
  9. "navigationBarTextStyle": "black",
  10. "navigationBarTitleText": "加载中",
  11. "navigationBarBackgroundColor": "#FFE05C",
  12. "backgroundColor": "#FFE05C"
  13. },
  14. "tabBar": {
  15. "color": "#999999",
  16. "selectedColor": "#333333",
  17. "borderStyle": "white",
  18. "backgroundColor": "#ffffff",
  19. "list": [
  20. {
  21. "pagePath": "pages/index/index",
  22. "iconPath": "static/tabBarImg/dianzan.png",
  23. "selectedIconPath": "static/tabBarImg/dianzan_cur.png",
  24. "text": "服务"
  25. },
  26. {
  27. "pagePath": "pages/my/my",
  28. "iconPath": "static/tabBarImg/me.png",
  29. "selectedIconPath": "static/tabBarImg/me_cur.png",
  30. "text": "我的"
  31. }
  32. ]
  33. },
  34. "usingComponents": {}
  35. }