pages.json 2.5 KB

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