修复表格初次获取滚动高度

This commit is contained in:
whyour
2021-10-23 23:44:11 +08:00
parent 2e00e80e96
commit a479f0fbce
3 changed files with 9 additions and 3 deletions
+3 -1
View File
@@ -763,7 +763,9 @@ const Crontab = ({ headerStyle, isPhone }: any) => {
useEffect(() => {
setPageSize(parseInt(localStorage.getItem('pageSize') || '20'));
const offset = isPhone ? 40 : 0;
setTableScrollHeight(getTableScroll() - offset);
setTimeout(() => {
setTableScrollHeight(getTableScroll() - offset);
});
}, []);
return (