pages.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. {
  2. "pages": [
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationBarTitleText": "面试报名"
  7. }
  8. },
  9. {
  10. "path": "pages/success/success",
  11. "style": {
  12. "navigationBarTitleText": "报名成功"
  13. }
  14. },
  15. {
  16. "path": "pages/interview-notice/interview-notice",
  17. "style": {
  18. "navigationBarTitleText": "面试注意事项"
  19. }
  20. },
  21. {
  22. "path": "pages/identity-verify/identity-verify",
  23. "style": {
  24. "navigationBarTitleText": "身份验证"
  25. }
  26. },
  27. {
  28. "path": "pages/face-photo/face-photo",
  29. "style": {
  30. "navigationBarTitleText": "拍摄照片"
  31. }
  32. },
  33. {
  34. "path": "pages/camera/camera",
  35. "style": {
  36. "navigationBarTitleText": "面试"
  37. }
  38. },
  39. {
  40. "path": "pages/my/my",
  41. "style": {
  42. "navigationBarTitleText": "我的"
  43. }
  44. }
  45. ],
  46. "globalStyle": {
  47. "navigationBarTextStyle": "black",
  48. "navigationBarTitleText": "面试系统",
  49. "navigationBarBackgroundColor": "#F8F8F8",
  50. "backgroundColor": "#F8F8F8"
  51. },
  52. "tabBar": {
  53. "color": "#7A7E83",
  54. "selectedColor": "#007AFF",
  55. "borderStyle": "black",
  56. "backgroundColor": "#FFFFFF",
  57. "list": [
  58. {
  59. "pagePath": "pages/index/index",
  60. "iconPath": "static/home.png",
  61. "selectedIconPath": "static/home_active.png",
  62. "text": "首页"
  63. },
  64. {
  65. "pagePath": "pages/my/my",
  66. "iconPath": "static/my.png",
  67. "selectedIconPath": "static/my_active.png",
  68. "text": "我的"
  69. }
  70. ]
  71. },
  72. "uniIdRouter": {}
  73. }