mirror of
https://github.com/whyour/qinglong.git
synced 2025-05-22 22:36:06 +08:00
修复表格初次获取滚动高度
This commit is contained in:
parent
2e00e80e96
commit
a479f0fbce
|
@ -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 (
|
||||
|
|
|
@ -299,7 +299,9 @@ const Dependence = ({ headerStyle, isPhone, ws }: any) => {
|
|||
|
||||
useEffect(() => {
|
||||
const offset = isPhone ? 40 : 0;
|
||||
setTableScrollHeight(getTableScroll({ extraHeight: 87 }) - offset);
|
||||
setTimeout(() => {
|
||||
setTableScrollHeight(getTableScroll({ extraHeight: 87 }) - offset);
|
||||
});
|
||||
}, []);
|
||||
|
||||
useEffect(() => {
|
||||
|
|
4
src/pages/env/index.tsx
vendored
4
src/pages/env/index.tsx
vendored
|
@ -438,7 +438,9 @@ const Env = ({ headerStyle, isPhone, theme }: any) => {
|
|||
|
||||
useEffect(() => {
|
||||
const offset = isPhone ? 40 : 0;
|
||||
setTableScrollHeight(getTableScroll({ extraHeight: 87 }) - offset);
|
||||
setTimeout(() => {
|
||||
setTableScrollHeight(getTableScroll({ extraHeight: 87 }) - offset);
|
||||
});
|
||||
}, []);
|
||||
|
||||
return (
|
||||
|
|
Loading…
Reference in New Issue
Block a user