|
|
@@ -7,7 +7,7 @@ import {
|
|
|
} from '@hooks';
|
|
|
import {Card} from 'antd';
|
|
|
import {FC} from 'react';
|
|
|
-import {context, pageContext, searchContext} from '../context';
|
|
|
+import {PRELOAD_KEY, context, pageContext, searchContext} from '../context';
|
|
|
import {ColumnsType} from 'antd/es/table';
|
|
|
import {CODE_COL_WIDTH, NORMAL_TABLE_WIDTH} from '@utils';
|
|
|
import {GetTraceBackSNListData} from '@models';
|
|
|
@@ -45,6 +45,7 @@ const TableList: FC = function () {
|
|
|
searchContext={searchContext}
|
|
|
isExporting={isExporting}
|
|
|
onExport={onExport}
|
|
|
+ preloadKey={PRELOAD_KEY}
|
|
|
/>
|
|
|
|
|
|
<Table
|
|
|
@@ -54,6 +55,7 @@ const TableList: FC = function () {
|
|
|
pageContext={pageContext}
|
|
|
searchContext={searchContext}
|
|
|
data-testid='deliver_trace_sn_table'
|
|
|
+ preloadKey={PRELOAD_KEY}
|
|
|
/>
|
|
|
</Card>
|
|
|
);
|