a management system using react+antd
在线演示:https://echovic.github.io/react-admin-manage/build/index
- [email protected]
- [email protected]
- [email protected](蚂蚁金服开源的react ui组件框架)
- [email protected](http请求模块,可用于前端任何场景,很强大)
- [email protected](可视化图表,别人基于react对echarts的封装,足够用了)
- [email protected](另一个基于react封装的图表,个人觉得是没有echarts好用)
- [email protected](顶部加载条)
- [email protected](别人基于react的富文本封装,如果找到其他更好的可以替换)
- [email protected](拖拽模块,找了个简单版的)
- [email protected](全屏插件)
- [email protected](图片弹层查看插件,不依赖jQuery,还是蛮好用👍)
- [email protected](css动画库)
+-- build/ ---打包的文件目录
+-- config/ ---npm run eject 后的配置文件目录
+-- node_modules/ ---npm下载文件目录
+-- public/
| --- index.html ---首页入口html文件
| --- npm.json ---echarts测试数据
| --- weibo.json ---echarts测试数据
+-- src/ ---核心代码目录
| +-- axios ---http请求存放目录
| | --- index.js
| +-- components ---各式各样的组件存放目录
| | +-- animation ---动画组件
| | | --- ...
| | +-- charts ---图表组件
| | | --- ...
| | +-- dashboard ---首页组件
| | | --- ...
| | +-- forms ---表单组件
| | | --- ...
| | +-- pages ---页面组件
| | | --- ...
| | +-- tables ---表格组件
| | | --- ...
| | +-- ui ---ui组件
| | | --- ...
| | --- BreadcrumbCustom.jsx ---面包屑组件
| | --- HeaderCustom.jsx ---顶部导航组件
| | --- Page.jsx ---页面容器
| | --- SiderCustom.jsx ---左边菜单组件
| +-- style ---项目的样式存放目录,主要采用less编写
| +-- utils ---工具文件存放目录
| --- App.js ---组件入口文件
| --- index.js ---项目的整体js入口文件,包括路由配置等
--- .env ---启动项目自定义端口配置文件
--- .eslintrc ---自定义eslint配置文件,包括增加的react jsx语法限制
--- package.json
# install dependencies
npm install
# serve with hot reload at localhost:9999
npm start
# build for production with minification
npm run build