|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- # VOGOCM-ERP 后台管理系统Web端
-
- ## 技术框架
-
- 技术框架: React + TypeScript + antd + Vite
-
-
- ## 项目目录结构
-
- ```
- ├── public
- │ └── vite.svg
- ├── src
- │ └── assets 公共资源
- │ ├── components 页面组件
- │ ├── router 路由模块
- │ ├── hooks react hooks
- │ ├── layout 页面布局
- │ ├── models 数据模型
- │ ├── pages 业务代码
- │ ├── request 处理axios的封装和调用
- │ ├── store 数据持久化和状态管理
- │ ├── utils 公共方法或常量
- │ ├── App.css
- │ ├── App.tsx
- │ ├── index.css
- │ └── main.tsx
- ├── index.html
- ├── package.json
- └── vite.config.js
- ```
-
- ## 测试 & 构建
-
- ### 安装依赖
- ```
- pnpm install(推荐使用pnpm)
- ```
- ### 启动
- ```
- pnpm start 或 pnpm run dev
- ```
- ### 构建
- ```
- pnpm build
- ```
- ### 预览build产物
- ```
- pnpm preview
- ```
-
- ## 关键技术点说明
-
-
|