祁阳图书馆智慧大屏
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.

39 lines
1.6 KiB

8 months 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. │ ├── components # 全局组件
  16. │ │ ├── echart # echart
  17. │ ├── router # 路由
  18. │ ├── views # views 所有页面
  19. │ │ ├── accessToLibrary # 总进馆人数
  20. │ │ ├── header # 头部
  21. │ │ ├── lengingRanking # 借阅排行榜
  22. │ │ ├── newBookRecommend # 新书推荐
  23. │ │ ├── notice # 通知公告
  24. │ │ ├── readStar # 阅读之星
  25. │ │ ├── todayBorrowed # 今日图书借还 -- 24小时图书馆
  26. │ │ ├── totalLending # 总借阅量 -- 总馆
  27. │ ├── App.vue # 入口页面
  28. │ ├── main.js # 入口文件 加载组件 初始化等 注意:Vue.prototype.libcode使用
  29. ├── .env.xxx # 环境变量配置
  30. ├── .eslintrc.js # eslint 配置项
  31. ├── .babelrc # babel-loader 配置
  32. ├── .travis.yml # 自动化CI配置
  33. ├── vue.config.js # vue-cli 配置
  34. ├── postcss.config.js # postcss 配置
  35. └── package.json # package.json
  36. ```