169 lines
3.6 KiB
TypeScript
169 lines
3.6 KiB
TypeScript
import type { VbenFormSchema } from '#/adapter/form';
|
|
import type { VxeTableGridOptions } from '#/adapter/vxe-table';
|
|
import type { DescriptionItemSchema } from '#/components/description';
|
|
|
|
import { h } from 'vue';
|
|
|
|
import { formatDateTime } from '@vben/utils';
|
|
|
|
import dayjs from 'dayjs';
|
|
|
|
import { DictTag } from '#/components/dict-tag';
|
|
import { DICT_TYPE, getDictOptions } from '#/utils';
|
|
|
|
/** 列表的搜索表单 */
|
|
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(): VxeTableGridOptions['columns'] {
|
|
return [
|
|
{
|
|
field: 'id',
|
|
title: '日志编号',
|
|
},
|
|
{
|
|
field: 'jobId',
|
|
title: '任务编号',
|
|
},
|
|
{
|
|
field: 'handlerName',
|
|
title: '处理器的名字',
|
|
},
|
|
{
|
|
field: 'handlerParam',
|
|
title: '处理器的参数',
|
|
},
|
|
{
|
|
field: 'executeIndex',
|
|
title: '第几次执行',
|
|
},
|
|
{
|
|
field: 'beginTime',
|
|
title: '执行时间',
|
|
formatter: ({ row }) => {
|
|
return `${formatDateTime(row.beginTime)} ~ ${formatDateTime(row.endTime)}`;
|
|
},
|
|
},
|
|
{
|
|
field: 'duration',
|
|
title: '执行时长',
|
|
formatter: ({ cellValue }) => `${cellValue} 毫秒`,
|
|
},
|
|
{
|
|
field: 'status',
|
|
title: '任务状态',
|
|
cellRender: {
|
|
name: 'CellDict',
|
|
props: { type: DICT_TYPE.INFRA_JOB_LOG_STATUS },
|
|
},
|
|
},
|
|
{
|
|
title: '操作',
|
|
width: 80,
|
|
fixed: 'right',
|
|
slots: { default: 'actions' },
|
|
},
|
|
];
|
|
}
|
|
|
|
/** 详情的配置 */
|
|
export function useDetailSchema(): DescriptionItemSchema[] {
|
|
return [
|
|
{
|
|
field: 'id',
|
|
label: '日志编号',
|
|
},
|
|
{
|
|
field: 'jobId',
|
|
label: '任务编号',
|
|
},
|
|
{
|
|
field: 'handlerName',
|
|
label: '处理器的名字',
|
|
},
|
|
{
|
|
field: 'handlerParam',
|
|
label: '处理器的参数',
|
|
},
|
|
{
|
|
field: 'executeIndex',
|
|
label: '第几次执行',
|
|
},
|
|
{
|
|
field: 'beginTime',
|
|
label: '执行时间',
|
|
},
|
|
{
|
|
field: 'endTime',
|
|
label: '结束时间',
|
|
},
|
|
{
|
|
field: 'duration',
|
|
label: '执行时长',
|
|
},
|
|
{
|
|
field: 'status',
|
|
label: '任务状态',
|
|
content: (data) =>
|
|
h(DictTag, {
|
|
type: DICT_TYPE.INFRA_JOB_LOG_STATUS,
|
|
value: data?.status,
|
|
}),
|
|
},
|
|
{
|
|
field: 'result',
|
|
label: '执行结果',
|
|
},
|
|
];
|
|
}
|