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.

1 年之前
1 年之前
1 年之前
1 年之前
1 年之前
1 年之前
1 年之前
1 年之前
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. # VOGOCM-ERP 后台管理系统Web端
  2. ## 技术框架
  3. 技术框架: React + TypeScript + antd + Vite
  4. ## 项目目录结构
  5. ```
  6. ├── public
  7. │ └── vite.svg
  8. ├── src
  9. │ └── assets 公共资源
  10. │ ├── components 页面组件
  11. │ ├── router 路由模块
  12. │ ├── hooks react hooks
  13. │ ├── layout 页面布局
  14. │ ├── models 数据模型
  15. │ ├── pages 业务代码
  16. │ ├── request 处理axios的封装和调用
  17. │ ├── store 数据持久化和状态管理
  18. │ ├── utils 公共方法或常量
  19. │ ├── App.css
  20. │ ├── App.tsx
  21. │ ├── index.css
  22. │ └── main.tsx
  23. ├── index.html
  24. ├── package.json
  25. └── vite.config.js
  26. ```
  27. ## 测试 & 构建
  28. ### 安装依赖
  29. ```
  30. pnpm install(推荐使用pnpm)
  31. ```
  32. ### 启动
  33. ```
  34. pnpm start 或 pnpm run dev
  35. ```
  36. ### 构建
  37. ```
  38. pnpm build
  39. ```
  40. ### 预览build产物
  41. ```
  42. pnpm preview
  43. ```
  44. ## 关键技术点说明