fes.js/README.md
万纯 f8ff51dbf3 update README
Update README.md
2020-08-27 20:56:23 +08:00

52 lines
2.1 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<p align="center"><a href="https://webank.gitee.io/fes.js/" target="_blank" rel="noopener noreferrer"><img width="100" src="https://github.com/WeBankFinTech/fes.js/blob/master/images/logo.jpg" alt="Fes logo"></a></p>
# Fes.js
不管什么项目可能需要一个管理台前端应用管理台前端应用一般包括权限、增删改查、报表、图表等业务逻辑相对简单的内容但是大量的增删改查、接口调试也非常耗费时间而且大中台概念下对管理台前端有了更高的要求希望保持统一的UI风格和一致的交互体验。
Fes.js管理开发到部署完整流程提供模板项目、cli命令行工具、丰富的PC端组件和一系列API提效中后台开发让开发只关注业务逻辑。
## 简介
Fes.js是一整套管理台前端应用解决方案包含Fes-Cli、Fes-Core、Fes-UI三部分。
- Fes-Cli是命令行工具一行命令创建工程、开启开发调试、打包发布。
- Fes-Core是运行时框架固定页面布局提供权限管理、储存管理、路由管理、接口管理、状态管理、数据字典管理、环境管理等API。以插件的方式提供扩展接口。
- Fes-UI是组件库包含30+的PC端组件库可以快速搭建出增删改查等页面
## Fes-Core 运行时架构
![image](https://github.com/WeBankFinTech/fes.js/blob/master/images/fes-core.png)
## 页面举例
首页:
![image](https://github.com/WeBankFinTech/fes.js/blob/master/images/home.png)
表单页面:
![image](https://github.com/WeBankFinTech/fes.js/blob/master/images/form.png)
列表页面:
![image](https://github.com/WeBankFinTech/fes.js/blob/master/images/list.png)
![image](https://github.com/WeBankFinTech/fes.js/blob/master/images/listAndFrom.png)
![image](https://github.com/WeBankFinTech/fes.js/blob/master/images/listAndImg.png)
## 使用
```bash
# install
npm install @webank/fes-cli -g
# create a project
fes init [project]
cd [project] && npm i
# start dev
npm run dev
# build
npm run build
```
## 文档
详细使用请查看 [文档](https://webank.gitee.io/fes.js/)