170 lines
3.8 KiB
TypeScript
170 lines
3.8 KiB
TypeScript
import type { VbenFormSchema } from '#/adapter/form';
|
|
import type { VxeTableGridOptions } from '#/adapter/vxe-table';
|
|
|
|
import { DICT_TYPE } from '@vben/constants';
|
|
import { getDictOptions } from '@vben/hooks';
|
|
|
|
/** 新增/修改的表单 */
|
|
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: '请输入处理器的名字',
|
|
},
|
|
dependencies: {
|
|
triggerFields: ['id'],
|
|
disabled: (values) => !!values.id,
|
|
},
|
|
rules: 'required',
|
|
},
|
|
{
|
|
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,
|
|
},
|
|
rules: 'required',
|
|
},
|
|
{
|
|
fieldName: 'retryInterval',
|
|
label: '重试间隔',
|
|
component: 'InputNumber',
|
|
componentProps: {
|
|
placeholder: '请输入重试间隔,单位:毫秒。设置为 0 时,无需间隔',
|
|
min: 0,
|
|
},
|
|
rules: 'required',
|
|
},
|
|
{
|
|
fieldName: 'monitorTimeout',
|
|
label: '监控超时时间',
|
|
component: 'InputNumber',
|
|
componentProps: {
|
|
placeholder: '请输入监控超时时间,单位:毫秒',
|
|
min: 0,
|
|
},
|
|
},
|
|
];
|
|
}
|
|
|
|
/** 列表的搜索表单 */
|
|
export function useGridFormSchema(): VbenFormSchema[] {
|
|
return [
|
|
{
|
|
fieldName: 'name',
|
|
label: '任务名称',
|
|
component: 'Input',
|
|
componentProps: {
|
|
clearable: true,
|
|
placeholder: '请输入任务名称',
|
|
},
|
|
},
|
|
{
|
|
fieldName: 'status',
|
|
label: '任务状态',
|
|
component: 'Select',
|
|
componentProps: {
|
|
options: getDictOptions(DICT_TYPE.INFRA_JOB_STATUS, 'number'),
|
|
clearable: true,
|
|
placeholder: '请选择任务状态',
|
|
},
|
|
},
|
|
{
|
|
fieldName: 'handlerName',
|
|
label: '处理器的名字',
|
|
component: 'Input',
|
|
componentProps: {
|
|
clearable: true,
|
|
placeholder: '请输入处理器的名字',
|
|
},
|
|
},
|
|
];
|
|
}
|
|
|
|
/** 表格列配置 */
|
|
export function useGridColumns(): VxeTableGridOptions['columns'] {
|
|
return [
|
|
{ type: 'checkbox', width: 40 },
|
|
{
|
|
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,
|
|
},
|
|
{
|
|
title: '操作',
|
|
width: 240,
|
|
fixed: 'right',
|
|
slots: { default: 'actions' },
|
|
},
|
|
];
|
|
}
|