app.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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. "pages/ResumeEvaluation/ResumeEvaluation"
  12. ],
  13. "window": {
  14. "navigationBarTextStyle": "black",
  15. "navigationBarTitleText": "面试系统",
  16. "navigationBarBackgroundColor": "#F8F8F8",
  17. "backgroundColor": "#F8F8F8"
  18. },
  19. "tabBar": {
  20. "color": "#7A7E83",
  21. "selectedColor": "#007AFF",
  22. "borderStyle": "black",
  23. "backgroundColor": "#FFFFFF",
  24. "list": [
  25. {
  26. "pagePath": "pages/index/index",
  27. "iconPath": "static/home.png",
  28. "selectedIconPath": "static/home_active.png",
  29. "text": "首页"
  30. },
  31. {
  32. "pagePath": "pages/my/my",
  33. "iconPath": "static/my.png",
  34. "selectedIconPath": "static/my_active.png",
  35. "text": "我的"
  36. }
  37. ]
  38. },
  39. "usingComponents": {}
  40. }