2020
11-19
11-19
ant design的table组件实现全选功能以及自定义分页
我就废话不多说了,大家还是直接看代码吧~antdesign的table组件实现全选功能以及自定义分页直接附上全部代码以及截图了import'./index.scss';importReactfrom'react';import{Checkbox,Table,Popconfirm}from'antd';classTestComponentextendsComponent{constructor(props){super(props);this.state={visible:false,indeterminate:true,checkAll:false,data:this.getData(),pageSize:10};}s...
继续阅读 >