pages.json 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationBarTitleText": "首页",
  7. "navigationStyle": "custom"
  8. }
  9. },
  10. {
  11. "path": "pages/login/login",
  12. "style": {
  13. "navigationBarTitleText": "登录",
  14. "navigationStyle": "custom"
  15. }
  16. },
  17. {
  18. "path": "pages/about/about",
  19. "style": {
  20. "navigationBarTitleText": "关于我们"
  21. // "navigationStyle": "custom"
  22. }
  23. }
  24. ],
  25. "subPackages": [
  26. {
  27. "root": "center",
  28. "pages": [
  29. {
  30. "path": "center",
  31. "style": {
  32. "navigationBarTitleText": "我的"
  33. // "navigationStyle": "custom"
  34. }
  35. },
  36. {
  37. "path": "resetpass",
  38. "style": {
  39. "navigationBarTitleText": "修改密码"
  40. // "navigationStyle": "custom"
  41. }
  42. },
  43. {
  44. "path": "checklist",
  45. "style": {
  46. "navigationBarTitleText": "核销记录"
  47. // "navigationStyle": "custom"
  48. }
  49. },
  50. {
  51. "path": "checkdetails",
  52. "style": {
  53. "navigationBarTitleText": "核销详情"
  54. // "navigationStyle": "custom"
  55. }
  56. },
  57. {
  58. "path": "checksuccess",
  59. "style": {
  60. "navigationBarTitleText": "核销结果"
  61. // "navigationStyle": "custom"
  62. }
  63. },
  64. {
  65. "path": "paycode",
  66. "style": {
  67. "navigationBarTitleText": "推广码"
  68. // "navigationStyle": "custom"
  69. }
  70. },
  71. {
  72. "path": "scan",
  73. "style": {
  74. "navigationBarTitleText": "扫描"
  75. // "navigationStyle": "custom"
  76. }
  77. }
  78. ]
  79. }
  80. ],
  81. "preloadRule": {
  82. "shopping/productList": {
  83. "network": "all",
  84. "packages": ["__APP__"]
  85. },
  86. "xushuo/xushuo": {
  87. "network": "all",
  88. "packages": ["__APP__"]
  89. }
  90. },
  91. "globalStyle": {
  92. "navigationBarTextStyle": "black",
  93. "navigationBarTitleText": "uni-app",
  94. "navigationBarBackgroundColor": "#F8F8F8",
  95. "backgroundColor": "#F8F8F8"
  96. },
  97. "uniIdRouter": {}
  98. }