Commit a4707321 authored by Chen_9g's avatar Chen_9g

update: 定时任务日志

parent f2f0e737
......@@ -10,7 +10,9 @@ export function listColumns(showDetail: Function): TableColumnSchema[]{
title: '任务名称',
field: 'name',
query: true,
width: 100,
minWidth: 120,
resizable: true,
showOverflow: "ellipsis",
renderCustom: ({ row }) => {
return createOpenTitle(showDetail,row,'name');
}
......@@ -52,13 +54,8 @@ export function listColumns(showDetail: Function): TableColumnSchema[]{
{
title: '执行结果',
field: 'result',
width: 120,
showOverflow: "ellipsis"
},
{
title: '错误日志',
field: 'errMsg',
width: 120,
minWidth: 120,
resizable: true,
showOverflow: "ellipsis"
},
{
......@@ -70,8 +67,7 @@ export function listColumns(showDetail: Function): TableColumnSchema[]{
queryType: 'BETWEEN',
componentProps:{
type: 'daterange'
},
queryType: 'BETWEEN'
}
},
width: 170,
},
......@@ -80,6 +76,12 @@ export function listColumns(showDetail: Function): TableColumnSchema[]{
field: 'endTime',
sortable: true,
width: 170,
},
{
title: '错误日志',
field: 'errMsg',
minWidth: 120,
showOverflow: "ellipsis"
}
];
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment