app.json 953 B

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