pages.json 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path" : "pages/login/login",
  5. "style" :
  6. {
  7. "navigationBarTitleText": "原动力有限公司",
  8. "enablePullDownRefresh": false
  9. }
  10. },
  11. {
  12. "path": "pages/index/index",
  13. "style": {
  14. "navigationBarTitleText": "原动力有限公司"
  15. }
  16. }
  17. ,{
  18. "path" : "pages/mine/mine",
  19. "style" :
  20. {
  21. "navigationBarTitleText": "我的",
  22. "enablePullDownRefresh": false
  23. }
  24. }
  25. ,{
  26. "path" : "pages/admissionApply/admissionApply",
  27. "style" :
  28. {
  29. "navigationBarTitleText": "入场申请",
  30. "enablePullDownRefresh": false
  31. }
  32. }
  33. ,{
  34. "path" : "pages/inputDetectionResult/inputDetectionResult",
  35. "style" :
  36. {
  37. "navigationBarTitleText": "检测结果录入",
  38. "enablePullDownRefresh": false
  39. }
  40. }
  41. ,{
  42. "path" : "pages/personnelSampling/personnelSampling",
  43. "style" :
  44. {
  45. "navigationBarTitleText": "人员采样",
  46. "enablePullDownRefresh": false
  47. }
  48. }
  49. ,{
  50. "path" : "pages/checkResult/checkResult",
  51. "style" :
  52. {
  53. "navigationBarTitleText": "检测结果查询",
  54. "enablePullDownRefresh": false
  55. }
  56. }
  57. ],
  58. "tabBar": {
  59. "color": "#7A7E83",
  60. "selectedColor": "#1296db",
  61. "borderStyle": "white",
  62. "backgroundColor": "#F8F8F8",
  63. "list": [
  64. {
  65. "pagePath": "pages/index/index",
  66. "iconPath": "static/icon/home.png",
  67. "selectedIconPath": "static/icon/homea.png",
  68. "text": "首页"
  69. },
  70. {
  71. "pagePath": "pages/mine/mine",
  72. "iconPath": "static/icon/user.png",
  73. "selectedIconPath": "static/icon/usera.png",
  74. "text": "我的"
  75. }
  76. ]
  77. },
  78. "globalStyle": {
  79. "navigationBarTextStyle": "black",
  80. "navigationBarTitleText": "uni-app",
  81. "navigationBarBackgroundColor": "#FAF8F8",
  82. "backgroundColor": "#FAF8F8"
  83. },
  84. "uniIdRouter": {}
  85. }