/yugong-gdslt

实现广东省水利厅桌面端规范

Primary LanguageVue

gdslt-admin

This template should help get you started developing with Vue 3 in Vite.

Recommended IDE Setup

VSCode + Volar (and disable Vetur) + TypeScript Vue Plugin (Volar).

Customize configuration

See Vite Configuration Reference.

Project Setup

npm install

Compile and Hot-Reload for Development

npm run dev

Compile and Minify for Production

npm run build

Lint with ESLint

npm run lint

git提交规范

  • feat: 新功能或功能变更
  • fix: 修复bug相关
  • perf: 性能改动,性能、页面等优化相关
  • docs:改动了文档,注释相关
  • style: 修改了代码格式化相关,如删除空格、改变缩进、单双引号切换、增删分号等,并不会影响代码逻辑
  • refactor: 重构代码,代码结构的调整相关(理论上不影响现有功能)
  • test: 增加或更改测试用例,单元测试相关
  • build: 影响编译的更改相关,比如打包路径更改、npm过程更改等
  • ci: 持续集成方面的更改。现在有些build系统喜欢把ci功能使用yml描述。如有这种更改,建议使用ci
  • chore: 其他改动相关,比如文件的删除、构建流程修改、依赖库工具更新增加等
  • revert: 回滚版本相关