refactor: job vxe

This commit is contained in:
xingyu4j
2022-11-22 17:07:30 +08:00
parent 562282b2ad
commit 92bcaa04d1
6 changed files with 402 additions and 446 deletions

View File

@@ -1,95 +1,77 @@
import { reactive } from 'vue'
import { DICT_TYPE } from '@/utils/dict'
import { useI18n } from '@/hooks/web/useI18n'
import { CrudSchema, useCrudSchemas } from '@/hooks/web/useCrudSchemas'
import { VxeCrudSchema, useVxeCrudSchemas } from '@/hooks/web/useVxeCrudSchemas'
// 国际化
const { t } = useI18n()
// CrudSchema
const crudSchemas = reactive<CrudSchema[]>([
{
label: t('common.index'),
field: 'id',
type: 'index',
form: {
show: false
const crudSchemas = reactive<VxeCrudSchema>({
primaryKey: 'id',
primaryType: 'seq',
action: true,
columns: [
{
title: '任务编号',
field: 'jobId',
isSearch: true
},
detail: {
show: false
}
},
{
label: '任务编号',
field: 'jobId',
search: {
show: true
}
},
{
label: '处理器的名字',
field: 'handlerName',
search: {
show: true
}
},
{
label: '处理器的参数',
field: 'handlerParam'
},
{
label: '第几次执行',
field: 'executeIndex'
},
{
label: '开始执行时间',
field: 'beginTime',
search: {
show: true,
component: 'DatePicker',
componentProps: {
type: 'date',
valueFormat: 'YYYY-MM-DD HH:mm:ss'
}
}
},
{
label: '结束执行时间',
field: 'endTime',
search: {
show: true,
component: 'DatePicker',
componentProps: {
type: 'date',
valueFormat: 'YYYY-MM-DD HH:mm:ss'
{
title: '处理器的名字',
field: 'handlerName',
isSearch: true
},
{
title: '处理器的参数',
field: 'handlerParam'
},
{
title: '第几次执行',
field: 'executeIndex'
},
{
title: '开始执行时间',
field: 'beginTime',
formatter: 'formatDate',
table: {
slots: {
default: 'beginTime_default'
}
},
search: {
show: true,
itemRender: {
name: 'XDataTimePicker'
}
}
},
table: {
show: false
}
},
{
label: '执行时长',
field: 'duration'
},
{
label: t('common.status'),
field: 'status',
dictType: DICT_TYPE.INFRA_JOB_LOG_STATUS,
dictClass: 'number',
search: {
show: true
}
},
{
field: 'action',
width: '100px',
label: t('table.action'),
form: {
show: false
{
title: '结束执行时间',
field: 'endTime',
formatter: 'formatDate',
isTable: false,
search: {
show: true,
itemRender: {
name: 'XDataTimePicker'
}
}
},
detail: {
show: false
{
title: '执行时长',
field: 'duration',
table: {
slots: {
default: 'duration_default'
}
}
},
{
title: t('common.status'),
field: 'status',
dictType: DICT_TYPE.INFRA_JOB_LOG_STATUS,
dictClass: 'number',
isSearch: true
}
}
])
export const { allSchemas } = useCrudSchemas(crudSchemas)
]
})
export const { allSchemas } = useVxeCrudSchemas(crudSchemas)