No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
powersir 5937dca791 add sample page hace 1 año
public layout struct hace 1 año
src add sample page hace 1 año
.eslintrc.cjs init react by vite template hace 1 año
.gitignore ignore lock file hace 1 año
README.md layout struct hace 1 año
index.html layout struct hace 1 año
package.json layout struct hace 1 año
tailwind.config.js add required libs hace 1 año
tsconfig.json layout struct hace 1 año
tsconfig.node.json init react by vite template hace 1 año
vite.config.ts add required libs hace 1 año

README.md

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

关键技术点说明