antd的使用
ProTable 的使用
actionRef 上面存储了, 表格的操作方法
interface ActionType {
reload: (resetPageIndex?: boolean) => void;
reloadAndRest: () => void;
reset: () => void;
clearSelected?: () => void;
startEditable: (rowKey: Key) => boolean;
cancelEditable: (rowKey: Key) => boolean;
}
1
2
3
4
5
6
7
8