华农3D项目
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.

38 lines
1.5 KiB

3 months ago
3 months ago
3 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. │ │ ├── header # 头部
  20. │ │ ├── pageFullView # 全景
  21. │ │ ├── pageWaterPumpHouse # 水泵房
  22. │ │ ├── pageBasement # 地下室
  23. │ │ ├── pageThirdFloor # 3楼
  24. │ │ ├── pageFireControlRoom # 消防控制室
  25. │ │ ├── index # 主页
  26. │ ├── App.vue # 入口页面
  27. │ ├── main.js # 入口文件 加载组件 初始化等
  28. ├── .env.xxx # 环境变量配置
  29. ├── .eslintrc.js # eslint 配置项
  30. ├── .babelrc # babel-loader 配置
  31. ├── .travis.yml # 自动化CI配置
  32. ├── vue.config.js # vue-cli 配置
  33. ├── postcss.config.js # postcss 配置
  34. └── package.json # package.json
  35. ```