Commit e57dc134 by zhangleyuan

feat:解决资料云盘切换页码的问题

parent f56c5b3f
...@@ -652,7 +652,10 @@ class FolderList extends React.Component { ...@@ -652,7 +652,10 @@ class FolderList extends React.Component {
this.props.onChangePage('current', page + 1); this.props.onChangePage('current', page + 1);
}} }}
onShowSizeChange={(current, size) => { onShowSizeChange={(current, size) => {
this.props.onChangePage('size', size); const that = this;
setTimeout(()=>{
this.props.onChangePage('size', size)
},1000)
}} }}
/> />
</When> </When>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment