app.json 986 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "pages": [
  3. "pages/index/index",
  4. "pages/success/success",
  5. "pages/interview-notice/interview-notice",
  6. "pages/identity-verify/identity-verify",
  7. "pages/face-photo/face-photo",
  8. "pages/camera/camera",
  9. "pages/my/my",
  10. "pages/interview/interview"
  11. ],
  12. "window": {
  13. "navigationBarTextStyle": "black",
  14. "navigationBarTitleText": "面试系统",
  15. "navigationBarBackgroundColor": "#F8F8F8",
  16. "backgroundColor": "#F8F8F8"
  17. },
  18. "tabBar": {
  19. "color": "#7A7E83",
  20. "selectedColor": "#007AFF",
  21. "borderStyle": "black",
  22. "backgroundColor": "#FFFFFF",
  23. "list": [
  24. {
  25. "pagePath": "pages/index/index",
  26. "iconPath": "static/home.png",
  27. "selectedIconPath": "static/home_active.png",
  28. "text": "首页"
  29. },
  30. {
  31. "pagePath": "pages/my/my",
  32. "iconPath": "static/my.png",
  33. "selectedIconPath": "static/my_active.png",
  34. "text": "我的"
  35. }
  36. ]
  37. },
  38. "usingComponents": {}
  39. }