app.json 1.2 KB

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