pages.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/login/index",
  5. "style": {
  6. "usingComponents":{
  7. "van-action-sheet": "/wxcomponents/vant/dist/action-sheet/index"
  8. }
  9. }
  10. },
  11. {
  12. "path": "pages/privacy/index",
  13. "style": {
  14. }
  15. },
  16. {
  17. "path": "pages/information/index",
  18. "style": {
  19. "onReachBottomDistance":300,
  20. "usingComponents": {
  21. "van-empty": "/wxcomponents/vant/dist/empty/index",
  22. "van-dialog": "/wxcomponents/vant/dist/dialog/index"
  23. }
  24. }
  25. },
  26. {
  27. "path": "pages/binding/index",
  28. "style": {
  29. "usingComponents": {
  30. "van-field": "/wxcomponents/vant/dist/field/index",
  31. "van-button": "/wxcomponents/vant/dist/button/index",
  32. "van-cell-group": "/wxcomponents/vant/dist/cell-group/index",
  33. "van-dialog": "/wxcomponents/vant/dist/dialog/index"
  34. }
  35. }
  36. },
  37. {
  38. "path": "pages/status/index",
  39. "style": {
  40. "onReachBottomDistance":300,
  41. "usingComponents":{
  42. "van-empty": "/wxcomponents/vant/dist/empty/index"
  43. }
  44. }
  45. }
  46. ],
  47. "easycom": {
  48. "cu-(.*)": "@/colorui/components/cu-$1.vue"
  49. },
  50. "globalStyle": {
  51. "navigationBarTextStyle": "black",
  52. "navigationBarBackgroundColor": "#F8F8F8",
  53. "backgroundColor": "#F8F8F8",
  54. "navigationBarTextStyle": "white",
  55. "navigationStyle": "custom",
  56. "usingComponents": {
  57. "van-icon": "/wxcomponents/vant/dist/icon/index"
  58. }
  59. }
  60. }