Showing
2 changed files
with
4 additions
and
0 deletions
@@ -10,6 +10,8 @@ export type SchedueParam = { | @@ -10,6 +10,8 @@ export type SchedueParam = { | ||
10 | data?: any; | 10 | data?: any; |
11 | code?: number; | 11 | code?: number; |
12 | jobId?: string; | 12 | jobId?: string; |
13 | + startTime?: number; | ||
14 | + endTime?: number; | ||
13 | }; | 15 | }; |
14 | 16 | ||
15 | export interface ReportModel { | 17 | export interface ReportModel { |
@@ -273,6 +273,8 @@ | @@ -273,6 +273,8 @@ | ||
273 | status: searchInfo.status, | 273 | status: searchInfo.status, |
274 | page: pagination.current, | 274 | page: pagination.current, |
275 | pageSize: pagination.pageSize, | 275 | pageSize: pagination.pageSize, |
276 | + startTime: moment(searchInfo.sendTime.at(-2)).valueOf(), | ||
277 | + endTime: moment(searchInfo.sendTime.at(-1)).valueOf(), | ||
276 | }); | 278 | }); |
277 | setTableData(res.items); | 279 | setTableData(res.items); |
278 | pagination.total = res.total; | 280 | pagination.total = res.total; |