环卫车小程序前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

69 lines
1.9 KiB

4 months ago
  1. ```
  2. .
  3. ├── common #演示需要的一些文件
  4. │ ├── api.js
  5. │ ├── config.js
  6. │ ├── demo.scss
  7. │ ├── mixin.js
  8. │ └── props.js
  9. ├── components #演示项目封装的组件
  10. │ └── page-nav
  11. │ └── page-nav.vue
  12. ├── pages #页面
  13. │ ├── componentsA #分包A
  14. │ │ ├── ...
  15. │ │ ├── ...
  16. │ ├── componentsB #分包B
  17. │ │ ├── ...
  18. │ │ ├── ...
  19. │ ├── componentsC #分包C
  20. │ │ ├── ...
  21. │ │ ├── ...
  22. │ └── example #演示项目首页
  23. │ ├── components.config.js #演示页面数据
  24. │ └── components.nvue #主演示页面
  25. ├── static #演示项目需要的一些文件
  26. │ ├── app-plus
  27. │ │ └── mp-html
  28. │ ├── common
  29. │ │ └── js
  30. │ └── uview
  31. │ ├── common
  32. │ └── example
  33. ├── store
  34. │ └── index.js
  35. ├── uni_modules
  36. │ └── uview-ui #uView2.0主包
  37. │ ├── LICENSE
  38. │ ├── README.md
  39. │ ├── changelog.md
  40. │ ├── components #所有的组件
  41. │ ├── index.js
  42. │ ├── index.scss
  43. │ ├── libs
  44. │ ├── package.json
  45. │ └── theme.scss
  46. ├── unpackage
  47. │ └── res
  48. │ └── icons
  49. ├── util
  50. │ └── request
  51. │ ├── index.js
  52. │ ├── requestInterceptors.js
  53. │ └── responseInterceptors.js
  54. ├── App.vue
  55. ├── LICENSE
  56. ├── main.js
  57. ├── manifest.json
  58. ├── package-lock.json
  59. ├── pages.json #页面配置
  60. ├── package.json
  61. ├── README.md
  62. ├── template.h5.html #h5模板
  63. ├── tree.md
  64. ├── uni.scss
  65. └── vue.config.js
  66. created by beiqiao.
  67. ```