app.json 932 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "pages": [
  3. "pages/server/server",
  4. "pages/home/home",
  5. "pages/manage/manage",
  6. "pages/service/service",
  7. "pages/message/message"
  8. ],
  9. "window": {
  10. "backgroundTextStyle": "light",
  11. "navigationBarBackgroundColor": "#fff",
  12. "navigationBarTitleText": "WeChat",
  13. "navigationBarTextStyle": "black"
  14. },
  15. "tabBar": {
  16. "selectedColor": "#353535",
  17. "list": [
  18. {
  19. "pagePath": "pages/server/server",
  20. "text": "预约",
  21. "iconPath": "images/timeline.png",
  22. "selectedIconPath": "images/timeline_s.png"
  23. },
  24. {
  25. "pagePath": "pages/home/home",
  26. "text": "我的",
  27. "iconPath": "images/home.png",
  28. "selectedIconPath": "images/home_s.png"
  29. },
  30. {
  31. "pagePath": "pages/manage/manage",
  32. "text": "管理",
  33. "iconPath": "images/settings.png",
  34. "selectedIconPath": "images/settings_s.png"
  35. }
  36. ]
  37. }
  38. }