diff --git a/src/pages/ideContainer/components/runTimeData.tsx b/src/pages/ideContainer/components/runTimeData.tsx
index e8da0c1..f2c4da1 100644
--- a/src/pages/ideContainer/components/runTimeData.tsx
+++ b/src/pages/ideContainer/components/runTimeData.tsx
@@ -9,41 +9,47 @@ const TabPane = Tabs.TabPane;
const columns: TableColumnProps[] = [
{
title: '节点',
- dataIndex: 'name'
+ dataIndex: 'name',
+ width: 120
},
{
title: '时间',
+ width: 160,
render: (_: any, record) => (
<>
- 开始{dayjs(record.startTime).format('YYYY-MM-DD HH:mm:ss')}
+ 开始 {dayjs(record.startTime).format('MM-DD HH:mm:ss')}
- {record.endTime > 0 && 结束{dayjs(record.endTime).format('YYYY-MM-DD HH:mm:ss')}}
+ {record.endTime > 0 && 结束 {dayjs(record.endTime).format('MM-DD HH:mm:ss')}}
>
)
},
{
title: '耗时',
dataIndex: 'duration',
+ width: 80,
render: (_: any, record) => (
record.duration > 1000 ?
{formatSeconds((record.duration / 1000).toString())} :
- {record.duration}毫秒
+ {record.duration}ms
)
},
{
title: '状态',
dataIndex: 'state',
+ width: 60,
+ align: 'center',
render: (_: any, record) => (
<>
- {record.state === 1 &&