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.

36 lines
1.4 KiB

2 years ago
2 years ago
  1. 自主查询机
  2. ```bash
  3. # install dependency
  4. npm install
  5. # develop
  6. npm run serve
  7. # 构建生产环境
  8. npm run build
  9. ```
  10. ```bash
  11. ## 项目结构
  12. ├── src # 源代码
  13. │ ├── api # 所有请求
  14. │ ├── assets # 主题 字体等静态资源
  15. │ ├── router # 路由
  16. │ ├── views # views 所有页面
  17. │ │ ├── module
  18. │ │ │ ├── bookDetails.vue # 书籍详情
  19. │ │ ├── activityDetail # 活动详情
  20. │ │ ├── activityFeed # 活动资讯list
  21. │ │ ├── digitalResource # 数字资源
  22. │ │ ├── libraryIntroduction # 图书馆简介
  23. │ │ ├── newBookRecommend # 新书推荐
  24. │ ├── App.vue # 入口页面
  25. │ ├── main.js # 入口文件 加载组件 初始化等 注意:Vue.prototype.libcode使用
  26. ├── .env.xxx # 环境变量配置
  27. ├── .eslintrc.js # eslint 配置项
  28. ├── .babelrc # babel-loader 配置
  29. ├── .travis.yml # 自动化CI配置
  30. ├── vue.config.js # vue-cli 配置
  31. ├── postcss.config.js # postcss 配置
  32. └── package.json # package.json
  33. ```