Some checks failed
CI / Test (ubuntu-latest) (push) Has been cancelled
CI / Test (windows-latest) (push) Has been cancelled
CI / Lint (ubuntu-latest) (push) Has been cancelled
CI / Lint (windows-latest) (push) Has been cancelled
CI / Check (ubuntu-latest) (push) Has been cancelled
CI / Check (windows-latest) (push) Has been cancelled
CI / CI OK (push) Has been cancelled
CodeQL / Analyze (javascript-typescript) (push) Has been cancelled
Deploy Website on push / Deploy Push Playground Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Docs Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Antd Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Element Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Naive Ftp (push) Has been cancelled
Deploy Website on push / Rerun on failure (push) Has been cancelled
Release Drafter / update_release_draft (push) Has been cancelled
42 lines
991 B
TypeScript
42 lines
991 B
TypeScript
import type { PageParam, PageResult } from '@vben/request';
|
|
|
|
import { requestClient } from '#/api/request';
|
|
|
|
export namespace InfraJobLogApi {
|
|
/** 任务日志信息 */
|
|
export interface JobLog {
|
|
id?: number;
|
|
jobId: number;
|
|
handlerName: string;
|
|
handlerParam: string;
|
|
cronExpression: string;
|
|
executeIndex: string;
|
|
beginTime: Date;
|
|
endTime: Date;
|
|
duration: string;
|
|
status: number;
|
|
createTime?: string;
|
|
result: string;
|
|
}
|
|
}
|
|
|
|
/** 查询任务日志列表 */
|
|
export function getJobLogPage(params: PageParam) {
|
|
return requestClient.get<PageResult<InfraJobLogApi.JobLog>>(
|
|
'/infra/job-log/page',
|
|
{ params },
|
|
);
|
|
}
|
|
|
|
/** 查询任务日志详情 */
|
|
export function getJobLog(id: number) {
|
|
return requestClient.get<InfraJobLogApi.JobLog>(
|
|
`/infra/job-log/get?id=${id}`,
|
|
);
|
|
}
|
|
|
|
/** 导出定时任务日志 */
|
|
export function exportJobLog(params: any) {
|
|
return requestClient.download('/infra/job-log/export-excel', { params });
|
|
}
|