pages.json 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/login/login",
  5. "style": {
  6. "navigationBarTitleText": ""
  7. }
  8. },
  9. {
  10. "path": "pages/index/index",
  11. "style": {
  12. "navigationBarTitleText": "首页"
  13. },
  14. "meta": {
  15. "auth": false,
  16. "sync": true,
  17. "title": "推荐",
  18. "group": "平台"
  19. }
  20. },
  21. {
  22. "path": "pages/index/app-update",
  23. "style": {
  24. "navigationBarTitleText": ""
  25. }
  26. },
  27. {
  28. "path": "pages/picking-task/index",
  29. "style": {
  30. "navigationBarTitleText": ""
  31. }
  32. },
  33. {
  34. "path": "pages/picking-task/delivery",
  35. "style": {
  36. "navigationBarTitleText": ""
  37. }
  38. },
  39. {
  40. "path": "pages/picking-task/detail",
  41. "style": {
  42. "navigationBarTitleText": ""
  43. }
  44. },
  45. {
  46. "path": "pages/index/notice-page",
  47. "style": {
  48. "navigationBarTitleText": ""
  49. }
  50. },
  51. {
  52. "path": "pages/inventory-inquiry/index",
  53. "style": {
  54. "navigationBarTitleText": ""
  55. }
  56. },
  57. {
  58. "path": "pages/goods/detail",
  59. "style": {
  60. "navigationBarTitleText": ""
  61. }
  62. },
  63. {
  64. "path": "pages/purchase/index",
  65. "style": {
  66. "navigationBarTitleText": ""
  67. }
  68. },
  69. {
  70. "path": "pages/purchase/put-storage",
  71. "style": {
  72. "navigationBarTitleText": ""
  73. }
  74. },
  75. {
  76. "path": "pages/check/index",
  77. "style": {
  78. "navigationBarTitleText": ""
  79. }
  80. }
  81. ],
  82. /* 分包预载配置 */
  83. // "preloadRule": {
  84. // "pages/index/index": {
  85. // "network": "all",
  86. // "packages": ["pages/account", "pages/app", "pages/user"]
  87. // }
  88. // },
  89. "globalStyle": {
  90. "navigationBarTextStyle": "black",
  91. "navigationBarTitleText": "pda",
  92. "navigationBarBackgroundColor": "#FAFAFC",
  93. "backgroundColor": "#FAFAFC",
  94. "navigationStyle": "custom"
  95. },
  96. "uniIdRouter": {}
  97. }