Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
powersir 5937dca791 add sample page il y a 1 an
public layout struct il y a 1 an
src add sample page il y a 1 an
.eslintrc.cjs init react by vite template il y a 1 an
.gitignore ignore lock file il y a 1 an
README.md layout struct il y a 1 an
index.html layout struct il y a 1 an
package.json layout struct il y a 1 an
tailwind.config.js add required libs il y a 1 an
tsconfig.json layout struct il y a 1 an
tsconfig.node.json init react by vite template il y a 1 an
vite.config.ts add required libs il y a 1 an

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

关键技术点说明