pages.json 1.3 KB

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