|
@@ -50,6 +50,10 @@ function columns12(): { label: string, fieldSHow?: { label: string, saveField: s
|
|
title: '投手', dataIndex: 'pitcher_name', label: '自定义指标', width: 80, align: 'center', default: 2,
|
|
title: '投手', dataIndex: 'pitcher_name', label: '自定义指标', width: 80, align: 'center', default: 2,
|
|
render: (a: string) => a || '--'
|
|
render: (a: string) => a || '--'
|
|
},
|
|
},
|
|
|
|
+ {
|
|
|
|
+ title: '创建时间', dataIndex: 'created_time', label: '自定义指标', width: 135, align: 'center', ellipsis: true,
|
|
|
|
+ render: (a: string) => a || '--'
|
|
|
|
+ },
|
|
{
|
|
{
|
|
title: '消耗', dataIndex: 'cost', label: '自定义指标', width: 110, default: 3, align: 'right', sorter: true,
|
|
title: '消耗', dataIndex: 'cost', label: '自定义指标', width: 110, default: 3, align: 'right', sorter: true,
|
|
render: (a: string) => <Statistic value={a || 0} precision={2} />
|
|
render: (a: string) => <Statistic value={a || 0} precision={2} />
|