pages.json 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  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/model/borrowing",
  42. "style": {
  43. "navigationBarTitleText": "设备借用",
  44. "enablePullDownRefresh": false
  45. }
  46. },{
  47. "path": "pages/model/detail",
  48. "style": {
  49. "navigationBarTitleText": "借用台账详情",
  50. "enablePullDownRefresh": false
  51. }
  52. },
  53. {
  54. "path": "pages/index/index",
  55. "style": {
  56. "navigationBarTitleText": "委托单列表",
  57. "enablePullDownRefresh": true,
  58. "app-plus": {
  59. "titleNView": {
  60. "buttons": [{
  61. "text": "\ue752",
  62. "fontSize": "20px",
  63. "float": "right",
  64. "fontSrc": "/static/font/iconfont.ttf"
  65. }]
  66. },
  67. "pullToRefresh": {
  68. "support": true,
  69. "style": "circle",
  70. "offset": 0
  71. }
  72. }
  73. }
  74. }, {
  75. "path": "pages/index/detail",
  76. "style": {
  77. "navigationBarTitleText": "委托单详情",
  78. "enablePullDownRefresh": false
  79. }
  80. }, {
  81. "path": "pages/index/select",
  82. "style": {
  83. "navigationBarTitleText": "选择审批人员",
  84. "enablePullDownRefresh": false
  85. }
  86. }, {
  87. "path": "pages/login",
  88. "style": {
  89. "navigationBarTitleText": "柳工",
  90. "enablePullDownRefresh": false
  91. }
  92. }
  93. ,{
  94. "path" : "pages/home/list",
  95. "style" :
  96. {
  97. "navigationBarTitleText": "审批中心",
  98. "enablePullDownRefresh": false
  99. }
  100. }
  101. ],
  102. "globalStyle": {
  103. "navigationBarTextStyle": "white",
  104. "navigationBarTitleText": "柳工机械",
  105. "navigationBarBackgroundColor": "#4581fb"
  106. },
  107. "uniIdRouter": {}
  108. }