Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pibigstar/admin-todo
React + antd 开发的后端管理平台,登陆页面非常好看
https://github.com/pibigstar/admin-todo
admin antd es6 mobx react router typing
Last synced: about 2 months ago
JSON representation
React + antd 开发的后端管理平台,登陆页面非常好看
- Host: GitHub
- URL: https://github.com/pibigstar/admin-todo
- Owner: pibigstar
- Created: 2019-05-08T09:07:02.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-09T01:35:18.000Z (about 2 years ago)
- Last Synced: 2023-03-01T17:37:22.934Z (almost 2 years ago)
- Topics: admin, antd, es6, mobx, react, router, typing
- Language: JavaScript
- Homepage:
- Size: 28.7 MB
- Stars: 8
- Watchers: 1
- Forks: 0
- Open Issues: 29
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## 任务发布系统后端管理
### 技术栈
- react
- antd
- react-router
- mobx
- canvas
- ES6
- cookie### 项目目录结构
```
assets--------存储静态图片资源和共用icon图标
components----存储共用组件
routes--------业务页面入口和常用模板
store---------状态管理
utils---------工具函数```
### 项目截图
![登录页面](https://github.com/pibigstar/admin-todo/blob/master/docs/screenshot/login.png)
![列表页面](https://github.com/pibigstar/admin-todo/blob/master/docs/screenshot/groups.png)### 启动
```bash
npm run start```
### 快速开发
##### 1. 添加页面JS
在src/routes/ 下新增页面JS
##### 2. 添加导航菜单
在src/components/SiderNav/index.js1) 在menus数组中新增链接
##### 3. 添加页面链接
在src/components/ContentMain/index.js中
1)新增链接位置
```javascript
const UserList = LoadableComponent(()=>import('../../routes/UserList/index'))
```
2) 注册路由
```javascript```
### 相关项目
- [任务发布系统后端-go语言编写](https://github.com/pibigstar/go-todo)
- [任务发布系统小程序端](https://github.com/pibigstar/wx-todo)
- [任务发布系统后端-react编写](https://github.com/pibigstar/admin-todo)