feat:增加 job 定时任务
parent
699bb5a132
commit
49632697a0
|
@ -0,0 +1,36 @@
|
||||||
|
import type { PageParam, PageResult } from '@vben/request';
|
||||||
|
|
||||||
|
import { requestClient } from '#/api/request';
|
||||||
|
|
||||||
|
export namespace InfraJobLogApi {
|
||||||
|
/** 任务日志信息 */
|
||||||
|
export interface InfraJobLog {
|
||||||
|
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.InfraJobLog>>('/infra/job-log/page', { params });
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 查询任务日志详情 */
|
||||||
|
export function getJobLog(id: number) {
|
||||||
|
return requestClient.get<InfraJobLogApi.InfraJobLog>(`/infra/job-log/get?id=${id}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 导出定时任务日志 */
|
||||||
|
export function exportJobLog(params: any) {
|
||||||
|
return requestClient.download('/infra/job-log/export-excel', { params });
|
||||||
|
}
|
|
@ -0,0 +1,68 @@
|
||||||
|
import type { PageParam, PageResult } from '@vben/request';
|
||||||
|
|
||||||
|
import { requestClient } from '#/api/request';
|
||||||
|
|
||||||
|
export namespace InfraJobApi {
|
||||||
|
/** 任务信息 */
|
||||||
|
export interface InfraJob {
|
||||||
|
id?: number;
|
||||||
|
name: string;
|
||||||
|
status: number;
|
||||||
|
handlerName: string;
|
||||||
|
handlerParam: string;
|
||||||
|
cronExpression: string;
|
||||||
|
retryCount: number;
|
||||||
|
retryInterval: number;
|
||||||
|
monitorTimeout: number;
|
||||||
|
createTime?: Date;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 查询任务列表 */
|
||||||
|
export function getJobPage(params: PageParam) {
|
||||||
|
return requestClient.get<PageResult<InfraJobApi.InfraJob>>('/infra/job/page', { params });
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 查询任务详情 */
|
||||||
|
export function getJob(id: number) {
|
||||||
|
return requestClient.get<InfraJobApi.InfraJob>(`/infra/job/get?id=${id}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 新增任务 */
|
||||||
|
export function createJob(data: InfraJobApi.InfraJob) {
|
||||||
|
return requestClient.post('/infra/job/create', data);
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 修改定时任务调度 */
|
||||||
|
export function updateJob(data: InfraJobApi.InfraJob) {
|
||||||
|
return requestClient.put('/infra/job/update', data);
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 删除定时任务调度 */
|
||||||
|
export function deleteJob(id: number) {
|
||||||
|
return requestClient.delete(`/infra/job/delete?id=${id}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 导出定时任务调度 */
|
||||||
|
export function exportJob(params: any) {
|
||||||
|
return requestClient.download('/infra/job/export-excel', { params });
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 任务状态修改 */
|
||||||
|
export function updateJobStatus(id: number, status: number) {
|
||||||
|
const params = {
|
||||||
|
id,
|
||||||
|
status
|
||||||
|
};
|
||||||
|
return requestClient.put('/infra/job/update-status', { params });
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 定时任务立即执行一次 */
|
||||||
|
export function runJob(id: number) {
|
||||||
|
return requestClient.put(`/infra/job/trigger?id=${id}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 获得定时任务的下 n 次执行时间 */
|
||||||
|
export function getJobNextTimes(id: number) {
|
||||||
|
return requestClient.get(`/infra/job/get_next_times?id=${id}`);
|
||||||
|
}
|
|
@ -0,0 +1,222 @@
|
||||||
|
import type { VbenFormSchema } from '#/adapter/form';
|
||||||
|
import type { OnActionClickFn, VxeTableGridOptions } from '#/adapter/vxe-table';
|
||||||
|
import type { InfraJobApi } from '#/api/infra/job';
|
||||||
|
|
||||||
|
import { DICT_TYPE, getDictOptions } from '#/utils/dict';
|
||||||
|
import { useAccess } from '@vben/access';
|
||||||
|
import { InfraJobStatusEnum } from '#/utils/constants';
|
||||||
|
|
||||||
|
const { hasAccessByCodes } = useAccess();
|
||||||
|
|
||||||
|
/** 新增/修改的表单 */
|
||||||
|
export function useFormSchema(): VbenFormSchema[] {
|
||||||
|
return [
|
||||||
|
{
|
||||||
|
fieldName: 'id',
|
||||||
|
component: 'Input',
|
||||||
|
dependencies: {
|
||||||
|
triggerFields: [''],
|
||||||
|
show: () => false,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
fieldName: 'name',
|
||||||
|
label: '任务名称',
|
||||||
|
component: 'Input',
|
||||||
|
componentProps: {
|
||||||
|
placeholder: '请输入任务名称',
|
||||||
|
},
|
||||||
|
rules: 'required',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
fieldName: 'handlerName',
|
||||||
|
label: '处理器的名字',
|
||||||
|
component: 'Input',
|
||||||
|
componentProps: {
|
||||||
|
placeholder: '请输入处理器的名字',
|
||||||
|
// readonly: ({ values }) => !!values.id,
|
||||||
|
},
|
||||||
|
rules: 'required',
|
||||||
|
// TODO @芋艿:在修改场景下,禁止调整
|
||||||
|
},
|
||||||
|
{
|
||||||
|
fieldName: 'handlerParam',
|
||||||
|
label: '处理器的参数',
|
||||||
|
component: 'Input',
|
||||||
|
componentProps: {
|
||||||
|
placeholder: '请输入处理器的参数',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
fieldName: 'cronExpression',
|
||||||
|
label: 'CRON 表达式',
|
||||||
|
component: 'Input',
|
||||||
|
componentProps: {
|
||||||
|
placeholder: '请输入 CRON 表达式',
|
||||||
|
},
|
||||||
|
rules: 'required',
|
||||||
|
// TODO @芋艿:未来支持动态的 CRON 表达式选择
|
||||||
|
},
|
||||||
|
{
|
||||||
|
fieldName: 'retryCount',
|
||||||
|
label: '重试次数',
|
||||||
|
component: 'InputNumber',
|
||||||
|
componentProps: {
|
||||||
|
placeholder: '请输入重试次数。设置为 0 时,不进行重试',
|
||||||
|
min: 0,
|
||||||
|
class: 'w-full',
|
||||||
|
},
|
||||||
|
rules: 'required',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
fieldName: 'retryInterval',
|
||||||
|
label: '重试间隔',
|
||||||
|
component: 'InputNumber',
|
||||||
|
componentProps: {
|
||||||
|
placeholder: '请输入重试间隔,单位:毫秒。设置为 0 时,无需间隔',
|
||||||
|
min: 0,
|
||||||
|
class: 'w-full'
|
||||||
|
},
|
||||||
|
rules: 'required',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
fieldName: 'monitorTimeout',
|
||||||
|
label: '监控超时时间',
|
||||||
|
component: 'InputNumber',
|
||||||
|
componentProps: {
|
||||||
|
placeholder: '请输入监控超时时间,单位:毫秒',
|
||||||
|
min: 0,
|
||||||
|
class: 'w-full',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 列表的搜索表单 */
|
||||||
|
export function useGridFormSchema(): VbenFormSchema[] {
|
||||||
|
return [
|
||||||
|
{
|
||||||
|
fieldName: 'name',
|
||||||
|
label: '任务名称',
|
||||||
|
component: 'Input',
|
||||||
|
componentProps: {
|
||||||
|
allowClear: true,
|
||||||
|
placeholder: '请输入任务名称',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
fieldName: 'status',
|
||||||
|
label: '任务状态',
|
||||||
|
component: 'Select',
|
||||||
|
componentProps: {
|
||||||
|
options: getDictOptions(DICT_TYPE.INFRA_JOB_STATUS, 'number'),
|
||||||
|
allowClear: true,
|
||||||
|
placeholder: '请选择任务状态',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
fieldName: 'handlerName',
|
||||||
|
label: '处理器的名字',
|
||||||
|
component: 'Input',
|
||||||
|
componentProps: {
|
||||||
|
allowClear: true,
|
||||||
|
placeholder: '请输入处理器的名字',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 表格列配置 */
|
||||||
|
export function useGridColumns<T = InfraJobApi.InfraJob>(
|
||||||
|
onActionClick: OnActionClickFn<T>,
|
||||||
|
): VxeTableGridOptions['columns'] {
|
||||||
|
return [
|
||||||
|
{
|
||||||
|
field: 'id',
|
||||||
|
title: '任务编号',
|
||||||
|
minWidth: 80,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
field: 'name',
|
||||||
|
title: '任务名称',
|
||||||
|
minWidth: 120,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
field: 'status',
|
||||||
|
title: '任务状态',
|
||||||
|
minWidth: 100,
|
||||||
|
cellRender: {
|
||||||
|
name: 'CellDict',
|
||||||
|
props: { type: DICT_TYPE.INFRA_JOB_STATUS, },
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
field: 'handlerName',
|
||||||
|
title: '处理器的名字',
|
||||||
|
minWidth: 180,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
field: 'handlerParam',
|
||||||
|
title: '处理器的参数',
|
||||||
|
minWidth: 140,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
field: 'cronExpression',
|
||||||
|
title: 'CRON 表达式',
|
||||||
|
minWidth: 120,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
field: 'operation',
|
||||||
|
title: '操作',
|
||||||
|
width: 280,
|
||||||
|
fixed: 'right',
|
||||||
|
align: 'center',
|
||||||
|
cellRender: {
|
||||||
|
attrs: {
|
||||||
|
nameField: 'name',
|
||||||
|
nameTitle: '任务',
|
||||||
|
onClick: onActionClick,
|
||||||
|
},
|
||||||
|
name: 'CellOperation',
|
||||||
|
options: [
|
||||||
|
{
|
||||||
|
code: 'edit',
|
||||||
|
show: hasAccessByCodes(['infra:job:update']),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
code: 'update-status',
|
||||||
|
text: '开启',
|
||||||
|
show: (row: any) => hasAccessByCodes(['infra:job:update'])
|
||||||
|
&& row.status === InfraJobStatusEnum.STOP,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
code: 'update-status',
|
||||||
|
text: '暂停',
|
||||||
|
show: (row: any) => hasAccessByCodes(['infra:job:update'])
|
||||||
|
&& row.status == InfraJobStatusEnum.NORMAL,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
code: 'trigger',
|
||||||
|
text: '执行',
|
||||||
|
show: hasAccessByCodes(['infra:job:trigger']),
|
||||||
|
},
|
||||||
|
// TODO @芋艿:增加一个“更多”选项
|
||||||
|
{
|
||||||
|
code: 'view',
|
||||||
|
text: '详细',
|
||||||
|
show: hasAccessByCodes(['infra:job:query']),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
code: 'log',
|
||||||
|
text: '日志',
|
||||||
|
show: hasAccessByCodes(['infra:job:query']),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
code: 'delete',
|
||||||
|
show: hasAccessByCodes(['infra:job:delete']),
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
];
|
||||||
|
}
|
|
@ -0,0 +1,208 @@
|
||||||
|
<script lang="ts" setup>
|
||||||
|
import type { OnActionClickParams, VxeTableGridOptions } from '#/adapter/vxe-table';
|
||||||
|
import type { InfraJobApi } from '#/api/infra/job';
|
||||||
|
|
||||||
|
import { Page, useVbenModal } from '@vben/common-ui';
|
||||||
|
import { Download, Plus, History } from '@vben/icons';
|
||||||
|
import { Button, message, Modal } from 'ant-design-vue';
|
||||||
|
import Form from './modules/form.vue';
|
||||||
|
import Detail from './modules/detail.vue';
|
||||||
|
import { DocAlert } from '#/components/doc-alert';
|
||||||
|
|
||||||
|
import { $t } from '#/locales';
|
||||||
|
import { useVbenVxeGrid } from '#/adapter/vxe-table';
|
||||||
|
import { useRouter } from 'vue-router';
|
||||||
|
import {InfraApiErrorLogProcessStatusEnum, InfraJobStatusEnum} from '#/utils/constants';
|
||||||
|
import { deleteJob, exportJob, getJobPage, runJob, updateJobStatus } from '#/api/infra/job';
|
||||||
|
import { downloadByData } from '#/utils/download';
|
||||||
|
|
||||||
|
import { useGridColumns, useGridFormSchema } from './data';
|
||||||
|
import {updateApiErrorLogStatus} from '#/api/infra/api-error-log';
|
||||||
|
|
||||||
|
const { push } = useRouter();
|
||||||
|
|
||||||
|
const [FormModal, formModalApi] = useVbenModal({
|
||||||
|
connectedComponent: Form,
|
||||||
|
destroyOnClose: true,
|
||||||
|
});
|
||||||
|
|
||||||
|
const [DetailModal, detailModalApi] = useVbenModal({
|
||||||
|
connectedComponent: Detail,
|
||||||
|
destroyOnClose: true,
|
||||||
|
});
|
||||||
|
|
||||||
|
/** 刷新表格 */
|
||||||
|
function onRefresh() {
|
||||||
|
gridApi.query();
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 导出表格 */
|
||||||
|
async function onExport() {
|
||||||
|
const data = await exportJob(await gridApi.formApi.getValues());
|
||||||
|
downloadByData(data, '定时任务.xls');
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 创建任务 */
|
||||||
|
function onCreate() {
|
||||||
|
formModalApi.setData(null).open();
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 编辑任务 */
|
||||||
|
function onEdit(row: InfraJobApi.InfraJob) {
|
||||||
|
formModalApi.setData(row).open();
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 查看任务详情 */
|
||||||
|
function onView(row: InfraJobApi.InfraJob) {
|
||||||
|
detailModalApi.setData({ id: row.id }).open();
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 更新任务状态 */
|
||||||
|
async function onUpdateStatus(row: InfraJobApi.InfraJob) {
|
||||||
|
const status = row.status === InfraJobStatusEnum.STOP ? InfraJobStatusEnum.NORMAL : InfraJobStatusEnum.STOP;
|
||||||
|
const statusText = status === InfraJobStatusEnum.NORMAL ? '启用' : '停用';
|
||||||
|
Modal.confirm({
|
||||||
|
title: '确认操作',
|
||||||
|
content: `确定${statusText} ${row.name} 吗?`,
|
||||||
|
onOk: async () => {
|
||||||
|
await updateJobStatus(row.id as number, status);
|
||||||
|
message.success({
|
||||||
|
content: $t('ui.actionMessage.operationSuccess'),
|
||||||
|
key: 'action_process_msg',
|
||||||
|
});
|
||||||
|
onRefresh();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 执行一次任务 */
|
||||||
|
async function onTrigger(row: InfraJobApi.InfraJob) {
|
||||||
|
Modal.confirm({
|
||||||
|
title: '确认操作',
|
||||||
|
content: `确定执行一次 ${row.name} 吗?`,
|
||||||
|
onOk: async () => {
|
||||||
|
await runJob(row.id as number);
|
||||||
|
message.success({
|
||||||
|
content: $t('ui.actionMessage.operationSuccess'),
|
||||||
|
key: 'action_process_msg',
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 跳转到任务日志 */
|
||||||
|
function onLog(row?: InfraJobApi.InfraJob) {
|
||||||
|
push({
|
||||||
|
name: 'InfraJobLog',
|
||||||
|
query: row?.id ? { id: row.id } : {},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 删除任务 */
|
||||||
|
async function onDelete(row: InfraJobApi.InfraJob) {
|
||||||
|
const hideLoading = message.loading({
|
||||||
|
content: $t('ui.actionMessage.deleting', [row.name]),
|
||||||
|
duration: 0,
|
||||||
|
key: 'action_process_msg',
|
||||||
|
});
|
||||||
|
try {
|
||||||
|
await deleteJob(row.id as number);
|
||||||
|
message.success({
|
||||||
|
content: $t('ui.actionMessage.deleteSuccess', [row.name]),
|
||||||
|
key: 'action_process_msg',
|
||||||
|
});
|
||||||
|
onRefresh();
|
||||||
|
} finally {
|
||||||
|
hideLoading();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 表格操作按钮的回调函数 */
|
||||||
|
function onActionClick({
|
||||||
|
code,
|
||||||
|
row,
|
||||||
|
}: OnActionClickParams<InfraJobApi.InfraJob>) {
|
||||||
|
switch (code) {
|
||||||
|
case 'edit': {
|
||||||
|
onEdit(row);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case 'update-status': {
|
||||||
|
onUpdateStatus(row);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case 'delete': {
|
||||||
|
onDelete(row);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case 'trigger': {
|
||||||
|
onTrigger(row);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case 'view': {
|
||||||
|
onView(row);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case 'log': {
|
||||||
|
onLog(row);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const [Grid, gridApi] = useVbenVxeGrid({
|
||||||
|
formOptions: {
|
||||||
|
schema: useGridFormSchema(),
|
||||||
|
},
|
||||||
|
gridOptions: {
|
||||||
|
columns: useGridColumns(onActionClick),
|
||||||
|
height: 'auto',
|
||||||
|
keepSource: true,
|
||||||
|
proxyConfig: {
|
||||||
|
ajax: {
|
||||||
|
query: async ({ page }, formValues) => {
|
||||||
|
return await getJobPage({
|
||||||
|
pageNo: page.currentPage,
|
||||||
|
pageSize: page.pageSize,
|
||||||
|
...formValues,
|
||||||
|
});
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
rowConfig: {
|
||||||
|
keyField: 'id',
|
||||||
|
},
|
||||||
|
toolbarConfig: {
|
||||||
|
refresh: { code: 'query' },
|
||||||
|
search: true,
|
||||||
|
},
|
||||||
|
} as VxeTableGridOptions<InfraJobApi.InfraJob>,
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<Page auto-content-height>
|
||||||
|
<DocAlert title="定时任务" url="https://doc.iocoder.cn/job/" />
|
||||||
|
<DocAlert title="异步任务" url="https://doc.iocoder.cn/async-task/" />
|
||||||
|
<DocAlert title="消息队列" url="https://doc.iocoder.cn/message-queue/" />
|
||||||
|
|
||||||
|
<FormModal @success="onRefresh" />
|
||||||
|
<DetailModal />
|
||||||
|
<Grid table-title="定时任务列表">
|
||||||
|
<template #toolbar-tools>
|
||||||
|
<Button type="primary" @click="onCreate" v-access:code="['infra:job:create']">
|
||||||
|
<Plus class="size-5" />
|
||||||
|
{{ $t('ui.actionTitle.create', ['任务']) }}
|
||||||
|
</Button>
|
||||||
|
<Button type="primary" class="ml-2" @click="onExport" v-access:code="['infra:job:export']">
|
||||||
|
<Download class="size-5" />
|
||||||
|
{{ $t('ui.actionTitle.export') }}
|
||||||
|
</Button>
|
||||||
|
<Button type="primary" class="ml-2" @click="onLog(undefined)" v-access:code="['infra:job:query']">
|
||||||
|
<History class="size-5" />
|
||||||
|
执行日志
|
||||||
|
</Button>
|
||||||
|
</template>
|
||||||
|
</Grid>
|
||||||
|
</Page>
|
||||||
|
</template>
|
|
@ -0,0 +1,143 @@
|
||||||
|
import type { VbenFormSchema } from '#/adapter/form';
|
||||||
|
import type { OnActionClickFn, VxeTableGridOptions } from '#/adapter/vxe-table';
|
||||||
|
import type { InfraJobLogApi } from '#/api/infra/job-log';
|
||||||
|
|
||||||
|
import { DICT_TYPE, getDictOptions } from '#/utils/dict';
|
||||||
|
import { useAccess } from '@vben/access';
|
||||||
|
import dayjs from 'dayjs';
|
||||||
|
import { formatDateTime } from '@vben/utils';
|
||||||
|
|
||||||
|
const { hasAccessByCodes } = useAccess();
|
||||||
|
|
||||||
|
/** 列表的搜索表单 */
|
||||||
|
export function useGridFormSchema(): VbenFormSchema[] {
|
||||||
|
return [
|
||||||
|
{
|
||||||
|
fieldName: 'handlerName',
|
||||||
|
label: '处理器的名字',
|
||||||
|
component: 'Input',
|
||||||
|
componentProps: {
|
||||||
|
allowClear: true,
|
||||||
|
placeholder: '请输入处理器的名字',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
fieldName: 'beginTime',
|
||||||
|
label: '开始执行时间',
|
||||||
|
component: 'DatePicker',
|
||||||
|
componentProps: {
|
||||||
|
allowClear: true,
|
||||||
|
placeholder: '选择开始执行时间',
|
||||||
|
valueFormat: 'YYYY-MM-DD HH:mm:ss',
|
||||||
|
showTime: {
|
||||||
|
format: 'HH:mm:ss',
|
||||||
|
defaultValue: dayjs('00:00:00', 'HH:mm:ss'),
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
fieldName: 'endTime',
|
||||||
|
label: '结束执行时间',
|
||||||
|
component: 'DatePicker',
|
||||||
|
componentProps: {
|
||||||
|
allowClear: true,
|
||||||
|
placeholder: '选择结束执行时间',
|
||||||
|
valueFormat: 'YYYY-MM-DD HH:mm:ss',
|
||||||
|
showTime: {
|
||||||
|
format: 'HH:mm:ss',
|
||||||
|
defaultValue: dayjs('23:59:59', 'HH:mm:ss'),
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
fieldName: 'status',
|
||||||
|
label: '任务状态',
|
||||||
|
component: 'Select',
|
||||||
|
componentProps: {
|
||||||
|
options: getDictOptions(DICT_TYPE.INFRA_JOB_LOG_STATUS, 'number'),
|
||||||
|
allowClear: true,
|
||||||
|
placeholder: '请选择任务状态',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 表格列配置 */
|
||||||
|
export function useGridColumns<T = InfraJobLogApi.InfraJobLog>(
|
||||||
|
onActionClick: OnActionClickFn<T>,
|
||||||
|
): VxeTableGridOptions['columns'] {
|
||||||
|
return [
|
||||||
|
{
|
||||||
|
field: 'id',
|
||||||
|
title: '日志编号',
|
||||||
|
minWidth: 80,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
field: 'jobId',
|
||||||
|
title: '任务编号',
|
||||||
|
minWidth: 80,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
field: 'handlerName',
|
||||||
|
title: '处理器的名字',
|
||||||
|
minWidth: 180,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
field: 'handlerParam',
|
||||||
|
title: '处理器的参数',
|
||||||
|
minWidth: 140,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
field: 'executeIndex',
|
||||||
|
title: '第几次执行',
|
||||||
|
minWidth: 100,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
field: 'beginTime',
|
||||||
|
title: '执行时间',
|
||||||
|
minWidth: 280,
|
||||||
|
formatter: ({ row }) => {
|
||||||
|
return `${formatDateTime(row.beginTime)} ~ ${formatDateTime(row.endTime)}`;
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
field: 'duration',
|
||||||
|
title: '执行时长',
|
||||||
|
minWidth: 120,
|
||||||
|
formatter: ({ row }) => {
|
||||||
|
return `${row.duration} 毫秒`;
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
field: 'status',
|
||||||
|
title: '任务状态',
|
||||||
|
minWidth: 100,
|
||||||
|
cellRender: {
|
||||||
|
name: 'CellDict',
|
||||||
|
props: { type: DICT_TYPE.INFRA_JOB_LOG_STATUS },
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
field: 'operation',
|
||||||
|
title: '操作',
|
||||||
|
width: 80,
|
||||||
|
fixed: 'right',
|
||||||
|
align: 'center',
|
||||||
|
cellRender: {
|
||||||
|
attrs: {
|
||||||
|
nameField: 'id',
|
||||||
|
nameTitle: '日志',
|
||||||
|
onClick: onActionClick,
|
||||||
|
},
|
||||||
|
name: 'CellOperation',
|
||||||
|
options: [
|
||||||
|
{
|
||||||
|
code: 'detail',
|
||||||
|
text: '详细',
|
||||||
|
show: hasAccessByCodes(['infra:job:query']),
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
];
|
||||||
|
}
|
|
@ -0,0 +1,100 @@
|
||||||
|
<script lang="ts" setup>
|
||||||
|
import type { OnActionClickParams, VxeTableGridOptions } from '#/adapter/vxe-table';
|
||||||
|
import type { InfraJobLogApi } from '#/api/infra/job-log';
|
||||||
|
|
||||||
|
import { Page, useVbenModal } from '@vben/common-ui';
|
||||||
|
import { Download } from '@vben/icons';
|
||||||
|
import { Button } from 'ant-design-vue';
|
||||||
|
import Detail from './modules/detail.vue';
|
||||||
|
import { DocAlert } from '#/components/doc-alert';
|
||||||
|
|
||||||
|
import { $t } from '#/locales';
|
||||||
|
import { useVbenVxeGrid } from '#/adapter/vxe-table';
|
||||||
|
import { useRoute } from 'vue-router';
|
||||||
|
import { exportJobLog, getJobLogPage } from '#/api/infra/job-log';
|
||||||
|
import { downloadByData } from '#/utils/download';
|
||||||
|
|
||||||
|
import { useGridColumns, useGridFormSchema } from './data';
|
||||||
|
|
||||||
|
const { query } = useRoute();
|
||||||
|
|
||||||
|
const [DetailModal, detailModalApi] = useVbenModal({
|
||||||
|
connectedComponent: Detail,
|
||||||
|
destroyOnClose: true,
|
||||||
|
});
|
||||||
|
|
||||||
|
/** 导出表格 */
|
||||||
|
async function onExport() {
|
||||||
|
const data = await exportJobLog(await gridApi.formApi.getValues());
|
||||||
|
downloadByData(data, '任务日志.xls');
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 查看日志详情 */
|
||||||
|
function onDetail(row: InfraJobLogApi.InfraJobLog) {
|
||||||
|
detailModalApi.setData({ id: row.id }).open();
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 表格操作按钮的回调函数 */
|
||||||
|
function onActionClick({
|
||||||
|
code,
|
||||||
|
row,
|
||||||
|
}: OnActionClickParams<InfraJobLogApi.InfraJobLog>) {
|
||||||
|
switch (code) {
|
||||||
|
case 'detail': {
|
||||||
|
onDetail(row);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 获取表单schema并设置默认jobId
|
||||||
|
const formSchema = useGridFormSchema();
|
||||||
|
|
||||||
|
const [Grid, gridApi] = useVbenVxeGrid({
|
||||||
|
formOptions: {
|
||||||
|
schema: formSchema,
|
||||||
|
},
|
||||||
|
gridOptions: {
|
||||||
|
columns: useGridColumns(onActionClick),
|
||||||
|
height: 'auto',
|
||||||
|
keepSource: true,
|
||||||
|
proxyConfig: {
|
||||||
|
ajax: {
|
||||||
|
query: async ({ page }, formValues) => {
|
||||||
|
return await getJobLogPage({
|
||||||
|
pageNo: page.currentPage,
|
||||||
|
pageSize: page.pageSize,
|
||||||
|
...formValues,
|
||||||
|
jobId: query.id,
|
||||||
|
});
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
rowConfig: {
|
||||||
|
keyField: 'id',
|
||||||
|
},
|
||||||
|
toolbarConfig: {
|
||||||
|
refresh: { code: 'query' },
|
||||||
|
search: true,
|
||||||
|
},
|
||||||
|
} as VxeTableGridOptions<InfraJobLogApi.InfraJobLog>,
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<Page auto-content-height>
|
||||||
|
<DocAlert title="定时任务" url="https://doc.iocoder.cn/job/" />
|
||||||
|
<DocAlert title="异步任务" url="https://doc.iocoder.cn/async-task/" />
|
||||||
|
<DocAlert title="消息队列" url="https://doc.iocoder.cn/message-queue/" />
|
||||||
|
|
||||||
|
<DetailModal />
|
||||||
|
<Grid table-title="任务日志列表">
|
||||||
|
<template #toolbar-tools>
|
||||||
|
<Button type="primary" class="ml-2" @click="onExport" v-access:code="['infra:job:export']">
|
||||||
|
<Download class="size-5" />
|
||||||
|
{{ $t('ui.actionTitle.export') }}
|
||||||
|
</Button>
|
||||||
|
</template>
|
||||||
|
</Grid>
|
||||||
|
</Page>
|
||||||
|
</template>
|
|
@ -0,0 +1,68 @@
|
||||||
|
<script lang="ts" setup>
|
||||||
|
import type { InfraJobLogApi } from '#/api/infra/job-log';
|
||||||
|
|
||||||
|
import { Descriptions } from 'ant-design-vue';
|
||||||
|
import { DictTag } from '#/components/dict-tag';
|
||||||
|
|
||||||
|
import { useVbenModal } from '@vben/common-ui';
|
||||||
|
import { DICT_TYPE } from '#/utils/dict';
|
||||||
|
import { formatDateTime } from '@vben/utils';
|
||||||
|
import { getJobLog } from '#/api/infra/job-log';
|
||||||
|
import { ref } from 'vue';
|
||||||
|
|
||||||
|
const formData = ref<InfraJobLogApi.InfraJobLog>();
|
||||||
|
|
||||||
|
const [Modal, modalApi] = useVbenModal({
|
||||||
|
async onOpenChange(isOpen: boolean) {
|
||||||
|
if (!isOpen) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
// 加载数据
|
||||||
|
const data = modalApi.getData<{ id: number }>();
|
||||||
|
if (!data?.id) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
modalApi.lock();
|
||||||
|
try {
|
||||||
|
formData.value = await getJobLog(data.id);
|
||||||
|
} finally {
|
||||||
|
modalApi.lock(false);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<Modal title="日志详情" class="w-1/2" :show-cancel-button="false" :show-confirm-button="false">
|
||||||
|
<Descriptions :column="1" bordered size="middle" class="mx-4" :label-style="{ width: '140px' }">
|
||||||
|
<Descriptions.Item label="日志编号">
|
||||||
|
{{ formData?.id }}
|
||||||
|
</Descriptions.Item>
|
||||||
|
<Descriptions.Item label="任务编号">
|
||||||
|
{{ formData?.jobId }}
|
||||||
|
</Descriptions.Item>
|
||||||
|
<Descriptions.Item label="处理器的名字">
|
||||||
|
{{ formData?.handlerName }}
|
||||||
|
</Descriptions.Item>
|
||||||
|
<Descriptions.Item label="处理器的参数">
|
||||||
|
{{ formData?.handlerParam }}
|
||||||
|
</Descriptions.Item>
|
||||||
|
<Descriptions.Item label="第几次执行">
|
||||||
|
{{ formData?.executeIndex }}
|
||||||
|
</Descriptions.Item>
|
||||||
|
<Descriptions.Item label="执行时间">
|
||||||
|
{{ formData?.beginTime ? formatDateTime(formData.beginTime) : '' }} ~
|
||||||
|
{{ formData?.endTime ? formatDateTime(formData.endTime) : '' }}
|
||||||
|
</Descriptions.Item>
|
||||||
|
<Descriptions.Item label="执行时长">
|
||||||
|
{{ formData?.duration ? formData.duration + ' 毫秒' : '' }}
|
||||||
|
</Descriptions.Item>
|
||||||
|
<Descriptions.Item label="任务状态">
|
||||||
|
<DictTag :type="DICT_TYPE.INFRA_JOB_LOG_STATUS" :value="formData?.status" />
|
||||||
|
</Descriptions.Item>
|
||||||
|
<Descriptions.Item label="执行结果">
|
||||||
|
{{ formData?.result }}
|
||||||
|
</Descriptions.Item>
|
||||||
|
</Descriptions>
|
||||||
|
</Modal>
|
||||||
|
</template>
|
|
@ -0,0 +1,77 @@
|
||||||
|
<script lang="ts" setup>
|
||||||
|
import type { InfraJobApi } from '#/api/infra/job';
|
||||||
|
|
||||||
|
import { Descriptions, Timeline } from 'ant-design-vue';
|
||||||
|
import { DictTag } from '#/components/dict-tag';
|
||||||
|
|
||||||
|
import { useVbenModal } from '@vben/common-ui';
|
||||||
|
import { DICT_TYPE } from '#/utils/dict';
|
||||||
|
import { formatDateTime } from '@vben/utils';
|
||||||
|
import { getJob, getJobNextTimes } from '#/api/infra/job';
|
||||||
|
import { ref } from 'vue';
|
||||||
|
|
||||||
|
const formData = ref<InfraJobApi.InfraJob>(); // 任务详情
|
||||||
|
const nextTimes = ref<Date[]>([]); // 下一次执行时间
|
||||||
|
|
||||||
|
const [Modal, modalApi] = useVbenModal({
|
||||||
|
async onOpenChange(isOpen: boolean) {
|
||||||
|
if (!isOpen) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
// 加载数据
|
||||||
|
const data = modalApi.getData<{ id: number }>();
|
||||||
|
if (!data?.id) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
modalApi.lock();
|
||||||
|
try {
|
||||||
|
formData.value = await getJob(data.id);
|
||||||
|
// 获取下一次执行时间
|
||||||
|
nextTimes.value = await getJobNextTimes(data.id);
|
||||||
|
} finally {
|
||||||
|
modalApi.lock(false);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<Modal title="任务详情" class="w-1/2" :show-cancel-button="false" :show-confirm-button="false">
|
||||||
|
<Descriptions :column="1" bordered size="middle" class="mx-4" :label-style="{ width: '140px' }">
|
||||||
|
<Descriptions.Item label="任务编号">
|
||||||
|
{{ formData?.id }}
|
||||||
|
</Descriptions.Item>
|
||||||
|
<Descriptions.Item label="任务名称">
|
||||||
|
{{ formData?.name }}
|
||||||
|
</Descriptions.Item>
|
||||||
|
<Descriptions.Item label="任务状态">
|
||||||
|
<DictTag :type="DICT_TYPE.INFRA_JOB_STATUS" :value="formData?.status" />
|
||||||
|
</Descriptions.Item>
|
||||||
|
<Descriptions.Item label="处理器的名字">
|
||||||
|
{{ formData?.handlerName }}
|
||||||
|
</Descriptions.Item>
|
||||||
|
<Descriptions.Item label="处理器的参数">
|
||||||
|
{{ formData?.handlerParam }}
|
||||||
|
</Descriptions.Item>
|
||||||
|
<Descriptions.Item label="Cron 表达式">
|
||||||
|
{{ formData?.cronExpression }}
|
||||||
|
</Descriptions.Item>
|
||||||
|
<Descriptions.Item label="重试次数">
|
||||||
|
{{ formData?.retryCount }}
|
||||||
|
</Descriptions.Item>
|
||||||
|
<Descriptions.Item label="重试间隔">
|
||||||
|
{{ formData?.retryInterval ? formData.retryInterval + ' 毫秒' : '无间隔' }}
|
||||||
|
</Descriptions.Item>
|
||||||
|
<Descriptions.Item label="监控超时时间">
|
||||||
|
{{ formData?.monitorTimeout && formData.monitorTimeout > 0 ? formData.monitorTimeout + ' 毫秒' : '未开启' }}
|
||||||
|
</Descriptions.Item>
|
||||||
|
<Descriptions.Item label="后续执行时间">
|
||||||
|
<Timeline class="h-[180px]">
|
||||||
|
<Timeline.Item v-for="(nextTime, index) in nextTimes" :key="index" color="blue">
|
||||||
|
第 {{ index + 1 }} 次:{{ formatDateTime(nextTime.toString()) }}
|
||||||
|
</Timeline.Item>
|
||||||
|
</Timeline>
|
||||||
|
</Descriptions.Item>
|
||||||
|
</Descriptions>
|
||||||
|
</Modal>
|
||||||
|
</template>
|
|
@ -0,0 +1,80 @@
|
||||||
|
<script lang="ts" setup>
|
||||||
|
import type { InfraJobApi } from '#/api/infra/job';
|
||||||
|
|
||||||
|
import { useVbenModal } from '@vben/common-ui';
|
||||||
|
import { message } from 'ant-design-vue';
|
||||||
|
|
||||||
|
import { $t } from '#/locales';
|
||||||
|
import { computed, ref } from 'vue';
|
||||||
|
import { useVbenForm } from '#/adapter/form';
|
||||||
|
import { createJob, getJob, updateJob } from '#/api/infra/job';
|
||||||
|
|
||||||
|
import { useFormSchema } from '../data';
|
||||||
|
|
||||||
|
const emit = defineEmits(['success']);
|
||||||
|
const formData = ref<InfraJobApi.InfraJob>();
|
||||||
|
const getTitle = computed(() => {
|
||||||
|
return formData.value?.id
|
||||||
|
? $t('ui.actionTitle.edit', ['任务'])
|
||||||
|
: $t('ui.actionTitle.create', ['任务']);
|
||||||
|
});
|
||||||
|
|
||||||
|
const [Form, formApi] = useVbenForm({
|
||||||
|
layout: 'horizontal',
|
||||||
|
schema: useFormSchema(),
|
||||||
|
showDefaultActions: false,
|
||||||
|
commonConfig: {
|
||||||
|
labelWidth: 140
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
const [Modal, modalApi] = useVbenModal({
|
||||||
|
async onConfirm() {
|
||||||
|
const { valid } = await formApi.validate();
|
||||||
|
if (!valid) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
modalApi.lock();
|
||||||
|
// 提交表单
|
||||||
|
const data = (await formApi.getValues()) as InfraJobApi.InfraJob;
|
||||||
|
try {
|
||||||
|
await (formData.value?.id
|
||||||
|
? updateJob(data)
|
||||||
|
: createJob(data));
|
||||||
|
// 关闭并提示
|
||||||
|
await modalApi.close();
|
||||||
|
emit('success');
|
||||||
|
message.success({
|
||||||
|
content: $t('ui.actionMessage.operationSuccess'),
|
||||||
|
key: 'action_process_msg',
|
||||||
|
});
|
||||||
|
} finally {
|
||||||
|
modalApi.lock(false);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
async onOpenChange(isOpen: boolean) {
|
||||||
|
if (!isOpen) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
// 加载数据
|
||||||
|
const data = modalApi.getData<InfraJobApi.InfraJob>();
|
||||||
|
if (!data || !data.id) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
modalApi.lock();
|
||||||
|
try {
|
||||||
|
formData.value = await getJob(data.id);
|
||||||
|
// 设置到 values
|
||||||
|
await formApi.setValues(formData.value);
|
||||||
|
} finally {
|
||||||
|
modalApi.lock(false);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<Modal :title="getTitle">
|
||||||
|
<Form class="mx-4" />
|
||||||
|
</Modal>
|
||||||
|
</template>
|
|
@ -67,4 +67,5 @@ export {
|
||||||
X,
|
X,
|
||||||
Download,
|
Download,
|
||||||
Upload,
|
Upload,
|
||||||
|
History,
|
||||||
} from 'lucide-vue-next';
|
} from 'lucide-vue-next';
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import dayjs from 'dayjs';
|
import dayjs from 'dayjs';
|
||||||
|
|
||||||
export function formatDate(time: number | string, format = 'YYYY-MM-DD') {
|
export function formatDate(time: number | string | Date, format = 'YYYY-MM-DD') {
|
||||||
try {
|
try {
|
||||||
const date = dayjs(time);
|
const date = dayjs(time);
|
||||||
if (!date.isValid()) {
|
if (!date.isValid()) {
|
||||||
|
@ -13,7 +13,7 @@ export function formatDate(time: number | string, format = 'YYYY-MM-DD') {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export function formatDateTime(time: number | string) {
|
export function formatDateTime(time: number | string | Date) {
|
||||||
return formatDate(time, 'YYYY-MM-DD HH:mm:ss');
|
return formatDate(time, 'YYYY-MM-DD HH:mm:ss');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue