fix: 调度任务页面排版

This commit is contained in:
TsMask
2024-01-10 15:21:36 +08:00
parent c174af7d8f
commit 3d8b2d35d7
2 changed files with 23 additions and 12 deletions

View File

@@ -127,28 +127,33 @@ let tableColumns: ColumnsType = [
title: t('views.monitor.jobLog.jobName'),
dataIndex: 'jobName',
align: 'left',
width: 200,
},
{
title: t('views.monitor.jobLog.jobGroup'),
dataIndex: 'jobGroup',
key: 'jobGroup',
align: 'center',
width: 100,
},
{
title: t('views.monitor.jobLog.invokeTarget'),
dataIndex: 'invokeTarget',
align: 'left',
width: 100,
},
{
title: t('views.monitor.jobLog.status'),
dataIndex: 'status',
key: 'status',
align: 'center',
width: 100,
},
{
title: t('views.monitor.jobLog.createTime'),
dataIndex: 'createTime',
align: 'center',
width: 150,
customRender(opt) {
if (+opt.value <= 0) return '';
return parseDateToStr(+opt.value);
@@ -158,7 +163,8 @@ let tableColumns: ColumnsType = [
title: t('views.monitor.jobLog.costTime'),
dataIndex: 'costTime',
key: 'costTime',
align: 'center',
align: 'right',
width: 100,
customRender(opt) {
return `${opt.value} ms`;
},
@@ -166,7 +172,7 @@ let tableColumns: ColumnsType = [
{
title: t('common.operate'),
key: 'jobLogId',
align: 'center',
align: 'left',
},
];
@@ -592,7 +598,7 @@ onMounted(() => {
:data-source="tableState.data"
:size="tableState.size"
:row-class-name="fnTableStriped"
:scroll="{ x: true }"
:scroll="{ x: tableColumns.length * 120 }"
:pagination="tablePagination"
:row-selection="{
type: 'checkbox',