pages.json 1.1 KB

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