添加 IntelliJ IDEA 项目配置文件

This commit is contained in:
ylweng
2025-09-02 01:23:16 +08:00
commit 59cfe620fe
25 changed files with 6734 additions and 0 deletions

38
admin-system/README.md Normal file
View File

@@ -0,0 +1,38 @@
# Admin System 管理后台
## 技术栈
- Vue 3 + TypeScript
- Element Plus / Ant Design Vue
- Vue Router
- Pinia状态管理
- Axios HTTP客户端
## 项目结构
```
admin-system/
├── src/
│ ├── views/ # 页面组件
│ ├── components/ # 公共组件
│ ├── router/ # 路由配置
│ ├── store/ # 状态管理
│ ├── api/ # API接口
│ ├── utils/ # 工具函数
│ └── assets/ # 静态资源
├── public/ # 公共文件
├── tests/ # 测试文件
├── package.json
└── README.md
```
## 功能模块
- 用户管理
- 商品管理
- 订单管理
- 数据统计
- 系统设置
## 开发规范
1. 使用Composition API
2. TypeScript严格模式
3. 组件命名规范
4. 代码分割和懒加载