chore: first login modify password

This commit is contained in:
jialin
2024-06-29 20:29:11 +08:00
parent cf0113e8d8
commit d47e53114c
25 changed files with 337 additions and 113 deletions
+5 -1
View File
@@ -15,9 +15,11 @@ const SealTable: React.FC<SealTableProps> = (props) => {
loading,
expandable,
pollingChildren,
watchChildren,
rowSelection,
renderChildren,
loadChildren
loadChildren,
loadChildrenAPI
} = props;
const [selectAll, setSelectAll] = useState(false);
@@ -131,8 +133,10 @@ const SealTable: React.FC<SealTableProps> = (props) => {
expandable={expandable}
rowKey={rowKey}
pollingChildren={pollingChildren}
watchChildren={watchChildren}
renderChildren={renderChildren}
loadChildren={loadChildren}
loadChildrenAPI={loadChildrenAPI}
onExpand={onExpand}
></TableRow>
);