Browse Source

当请求数据返回204造成数据列表为空值时tableData为null报错问题

pull/39/head
易湘陵 4 years ago
parent
commit
8227f7e004
  1. 2
      vben271/src/components/Table/src/hooks/useTableScroll.ts

2
vben271/src/components/Table/src/hooks/useTableScroll.ts

@ -88,7 +88,7 @@ export function useTableScroll(
bodyEl!.style.height = 'unset';
if (!unref(getCanResize) || tableData.length === 0) return;
if (!unref(getCanResize) || !tableData || tableData.length === 0) return;
await nextTick();
//Add a delay to get the correct bottomIncludeBody paginationHeight footerHeight headerHeight

Loading…
Cancel
Save