pages.json 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/home/index",
  5. "style": {
  6. "navigationBarTitleText": "首页",
  7. "enablePullDownRefresh": true,
  8. "navigationStyle": "custom"
  9. }
  10. },
  11. {
  12. "path": "pages/model/index",
  13. "style": {
  14. "navigationBarTitleText": "设备借还台账",
  15. "enablePullDownRefresh": true,
  16. "app-plus": {
  17. "titleNView": {
  18. "buttons": [{
  19. "text": "\ue752",
  20. "fontSize": "20px",
  21. "float": "right",
  22. "fontSrc": "/static/font/iconfont.ttf"
  23. }]
  24. },
  25. "pullToRefresh": {
  26. "support": true,
  27. "style": "circle",
  28. "offset": 0
  29. }
  30. }
  31. }
  32. },
  33. {
  34. "path": "pages/model/return",
  35. "style": {
  36. "navigationBarTitleText": "设备归还",
  37. "enablePullDownRefresh": false
  38. }
  39. },
  40. {
  41. "path": "pages/index/index",
  42. "style": {
  43. "navigationBarTitleText": "委托单列表",
  44. "enablePullDownRefresh": true,
  45. "app-plus": {
  46. "titleNView": {
  47. "buttons": [{
  48. "text": "\ue752",
  49. "fontSize": "20px",
  50. "float": "right",
  51. "fontSrc": "/static/font/iconfont.ttf"
  52. }]
  53. },
  54. "pullToRefresh": {
  55. "support": true,
  56. "style": "circle",
  57. "offset": 0
  58. }
  59. }
  60. }
  61. }, {
  62. "path": "pages/index/detail",
  63. "style": {
  64. "navigationBarTitleText": "委托单详情",
  65. "enablePullDownRefresh": false
  66. }
  67. }, {
  68. "path": "pages/index/select",
  69. "style": {
  70. "navigationBarTitleText": "选择审批人员",
  71. "enablePullDownRefresh": false
  72. }
  73. }, {
  74. "path": "pages/login",
  75. "style": {
  76. "navigationBarTitleText": "柳工",
  77. "enablePullDownRefresh": false
  78. }
  79. }
  80. ],
  81. "globalStyle": {
  82. "navigationBarTextStyle": "white",
  83. "navigationBarTitleText": "柳工机械",
  84. "navigationBarBackgroundColor": "#4581fb"
  85. },
  86. "uniIdRouter": {}
  87. }