|
@@ -145,15 +145,15 @@ function columns12(): { label: string, fieldSHow?: { label: string, saveField: s
|
|
|
render: (a: number) => <Statistic value={a || 0} />
|
|
|
},
|
|
|
{
|
|
|
- title: '活跃用户停留总时长', tips: '活跃用户人均停留时长*活跃用户人数', dataIndex: 'activeDuration', label: '应用端指标', align: 'center', width: 90, default: 31, sorter: true,
|
|
|
+ title: '活跃用户停留总时长', tips: '活跃用户人均停留时长*活跃用户人数', dataIndex: 'activeDuration', label: '应用端指标', align: 'center', width: 110, default: 31, sorter: true,
|
|
|
render: (a: number) => {
|
|
|
- return formatSecondsToTime(a || 0)
|
|
|
+ return formatSecondsToTime(a ? Math.round(a) : 0)
|
|
|
}
|
|
|
},
|
|
|
{
|
|
|
- title: '活跃用户人均停留时长', tips: '活跃用户停留总时长/活跃用户人数', dataIndex: 'avgActiveDuration', label: '应用端指标', align: 'center', width: 100, default: 32, sorter: true,
|
|
|
+ title: '活跃用户人均停留时长', tips: '活跃用户停留总时长/活跃用户人数', dataIndex: 'avgActiveDuration', label: '应用端指标', align: 'center', width: 120, default: 32, sorter: true,
|
|
|
render: (a: number) => {
|
|
|
- return formatSecondsToTime(a || 0)
|
|
|
+ return formatSecondsToTime(a ? Math.round(a) : 0)
|
|
|
}
|
|
|
},
|
|
|
{
|