pages.json 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/login/index",
  5. "style": {
  6. "navigationBarTitleText": "登录",
  7. "app-plus": {
  8. "softinputMode": "adjustResize"
  9. }
  10. }
  11. },
  12. {
  13. "path": "pages/reportForm/index",
  14. "style": {
  15. "navigationBarTitleText": "报表",
  16. "backgroundColor": "#2c3e50",
  17. "app-plus": {
  18. "softinputMode": "adjustResize"
  19. },
  20. "enablePullDownRefresh":true
  21. }
  22. },
  23. {
  24. "path": "pages/message/index",
  25. "style": {
  26. "navigationBarTitleText": "消息",
  27. "app-plus": {
  28. "softinputMode": "adjustResize"
  29. },
  30. "enablePullDownRefresh":true
  31. }
  32. },
  33. {
  34. "path": "pages/user/index",
  35. "style": {
  36. "navigationBarTitleText": "我的",
  37. "app-plus": {
  38. "softinputMode": "adjustResize"
  39. }
  40. }
  41. },
  42. {
  43. "path": "pages/reportForm/report-detail/index",
  44. "style": {
  45. "navigationBarTitleText": "报表详情",
  46. "app-plus": {
  47. "softinputMode": "adjustResize"
  48. }
  49. }
  50. },
  51. {
  52. "path": "pages/message/msg-detail/index",
  53. "style": {
  54. "navigationBarTitleText": "消息详情",
  55. "app-plus": {
  56. "softinputMode": "adjustResize"
  57. }
  58. }
  59. },
  60. {
  61. "path": "pages/reportForm/report-detail/recordDetail",
  62. "style": {
  63. "navigationBarTitleText": "运行详情",
  64. "app-plus": {
  65. "softinputMode": "adjustResize"
  66. }
  67. }
  68. }
  69. ],
  70. "globalStyle": {
  71. "navigationBarTextStyle": "white",
  72. "navigationBarTitleText": "Easy Industrial Report",
  73. "navigationBarBackgroundColor": "#2c3e50",
  74. "navigationStyle": "custom",
  75. "backgroundColor": "#2c3e50"
  76. },
  77. "tabBar": {
  78. "iconfontSrc": "static/fonts/iconfont.ttf",
  79. "list": [{
  80. "pagePath": "pages/reportForm/index",
  81. "text": "报表",
  82. "iconfont": {
  83. "text": "\ue663",
  84. "selectedText":"\ue665"
  85. }
  86. }, {
  87. "pagePath": "pages/message/index",
  88. "text": "消息",
  89. "iconfont": {
  90. "text": "\ue620",
  91. "selectedText":"\ue61e"
  92. }
  93. }, {
  94. "pagePath": "pages/user/index",
  95. "text": "我的",
  96. "iconfont": {
  97. "text": "\ue628",
  98. "selectedText":"\ue614"
  99. }
  100. }],
  101. "color": "#2c3e50"
  102. },
  103. "uniIdRouter": {}
  104. }