app.json 1.0 KB

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