502502_Hospital/README.md

86 lines
2.2 KiB
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 502502_医疗订单后台
### 系统管理平台
### 安装使用步骤
- **Install**
```text
pnpm install
```
- **Run**
```text
pnpm dev
```
- **Build**
```text
pnpm build
```
- **preview**
```text
pnpm preview
```
### 文件资源目录 📚
```text
502402_BasicManage
├─ .vscode # VSCode 推荐配置
├─ mock # Mock模拟数据
├─ public # 静态资源文件
│ ├─ assets # 静态资源文件
├─ src
│ ├─ api # API 接口管理
│ │ └─ typings # 接口 ts 声明
│ ├─ assets # 静态资源文件
│ │ └─ styles # 全局样式文件
│ ├─ const # 全局 常量 声明(颜色/长宽)
│ ├─ components # 全局组件
│ ├─ router # 路由管理
│ ├─ stores # pinia store
│ ├─ utils # 常用工具库
│ ├─ views # 项目所有页面
│ ├─ App.vue # 项目主组件
│ ├─ main.ts # 项目入口文件
│ └─ vite-env.d.ts # 指定 ts 识别 vue
├─ .env # vite 常用配置
├─ .env.development # 开发环境配置
├─ .env.production # 生产环境配置
├─ .env.test # 测试环境配置
├─ .prettierrc # vs代码规范文件
├─ index.html # 入口 html
├─ pnpm-lock.yaml # 依赖包包版本锁
├─ package.json # 依赖包管理
├─ README.md # README 介绍
├─ tsconfig.json # typescript 全局配置
└─ vite.config.ts # vite 全局配置文件
```
### 开发环境 🔨
- 使用 Vue3.3 + TypeScript + Vite4 + Pinia + VueRouter开发
- UI组件: ant-design-vue
- CSS预处理器: sass
- vite插件: axios
- Node环境: v18.16.0
### Git commit ⻛格指南
- feat: 增加新功能
- fix: 修复问题
- style: 代码⻛格相关⽆影响运⾏结果的
- perf: 优化/性能提升
- refactor: 重构
- revert: 撤销修改
- test: 测试相关
- docs: ⽂档/注释
- chore: 依赖更新/脚⼿架配置修改等
- ci: 持续集成