pages.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationBarTitleText": "委托单列表",
  7. "enablePullDownRefresh": true,
  8. "app-plus": {
  9. "titleNView": {
  10. "buttons": [{
  11. "text": "\ue752",
  12. "fontSize": "20px",
  13. "float": "right",
  14. "fontSrc": "/static/font/iconfont.ttf"
  15. }]
  16. },
  17. "pullToRefresh": {
  18. "support": true,
  19. "style": "circle",
  20. "offset": 0
  21. }
  22. }
  23. }
  24. }
  25. ,{
  26. "path" : "pages/index/detail",
  27. "style" :
  28. {
  29. "navigationBarTitleText": "委托单详情",
  30. "enablePullDownRefresh": false
  31. }
  32. }
  33. ,{
  34. "path" : "pages/index/select",
  35. "style" :
  36. {
  37. "navigationBarTitleText": "选择审批人员",
  38. "enablePullDownRefresh": false
  39. }
  40. }
  41. ,{
  42. "path" : "pages/login",
  43. "style" :
  44. {
  45. "navigationBarTitleText": "",
  46. "enablePullDownRefresh": false
  47. }
  48. }
  49. ],
  50. "globalStyle": {
  51. "navigationBarTextStyle": "white",
  52. "navigationBarTitleText": "柳工机械",
  53. "navigationBarBackgroundColor": "#4581fb"
  54. },
  55. "uniIdRouter": {}
  56. }