Skip to content

Commit

Permalink
form & searchbar 解决弹出框滚动问题,将要加入echarts
Browse files Browse the repository at this point in the history
  • Loading branch information
weiq committed Jun 6, 2018
1 parent 88b98e6 commit bc7e11d
Show file tree
Hide file tree
Showing 8 changed files with 729 additions and 399 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@ $ npm start
```

## Change log
- 增加SideLayout组件,可开关左侧面板,用法见DataTable最后‘左侧树联动’的例子
- 修改SearchBar组件,Form组件,可增加appendTo属性,解决滚动时弹出的下拉框不随容器移动问题appendTo可为true|function
- 增加SideLayout组件,可开关左侧面板,用法见数据表格最后‘左侧树联动’的例子
- 增加对布局样式的调整(在换肤栏里),可以对头部,侧边栏,面包屑进行设置,并修改了几处样式问题
- 修改Dashboard增加几个图表展示
- 修改原有Charts为G2,对其进行轻量化封装,本身已经很好用了(为了增加其它图表支持,进行区分)
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
"css-element-queries": "^1.0.2",
"dva": "^2.2.3",
"dva-loading": "^1.0.4",
"echarts": "^4.1.0",
"object.omit": "^3.0.0",
"path-to-regexp": "^2.2.1",
"react": "^16.2.0",
Expand Down
13 changes: 13 additions & 0 deletions src/components/Charts/ECharts/ECharts.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import React, { Component } from 'react';

class ECharts extends Component {
render() {
return (
<div>

</div>
);
}
}

export default ECharts;
Loading

0 comments on commit bc7e11d

Please sign in to comment.