|
@@ -236,7 +236,7 @@ function columns12(dayHandle: (data: any) => void): { label: string, fieldSHow?:
|
|
|
render: (a: any) => <Statistic value={a || 0} />
|
|
|
},
|
|
|
{
|
|
|
- title: '首次付费率(广告)', dataIndex: 'firstActivePayRate', label: '广告媒体端数据', align: 'center', className: "adDataBackColorClass", width: 70, sorter: true, default: 21,
|
|
|
+ title: '首次付费率(广告)', dataIndex: 'firstActivePayRate', label: '广告媒体端数据', align: 'center', className: "adDataBackColorClass", width: 80, sorter: true, default: 21,
|
|
|
render: (a: number) => <Statistic value={a ? a * 100 : 0} precision={2} valueStyle={!a ? {} : a >= 1 ? { color: 'red' } : { color: '#0f990f' }} suffix="%" />
|
|
|
},
|
|
|
{
|
|
@@ -396,6 +396,30 @@ function columns12(dayHandle: (data: any) => void): { label: string, fieldSHow?:
|
|
|
title: '7日ARPU', dataIndex: 'day7Arpu', label: '付费数据', align: 'center', width: 70, sorter: true, className: 'payDataBackColorClass',
|
|
|
render: (a: any) => <Statistic value={a || 0} />
|
|
|
},
|
|
|
+ {
|
|
|
+ title: '7日付费100+用户数', dataIndex: 'day7OneHundredAmountNum', label: '付费数据', align: 'center', width: 75, sorter: true, className: 'payDataBackColorClass',
|
|
|
+ render: (a: any) => <Statistic value={a || 0} />
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '7日付费100+用户付费成本', dataIndex: 'day7OneHundredAmountNumCost', label: '付费数据', align: 'center', width: 90, sorter: true, className: 'payDataBackColorClass',
|
|
|
+ render: (a: any) => <Statistic value={a || 0} />
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '7日付费200+用户数', dataIndex: 'day7TwoHundredAmountNum', label: '付费数据', align: 'center', width: 75, sorter: true, className: 'payDataBackColorClass',
|
|
|
+ render: (a: any) => <Statistic value={a || 0} />
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '7日付费200+用户付费成本', dataIndex: 'day7TwoHundredAmountNumCost', label: '付费数据', align: 'center', width: 90, sorter: true, className: 'payDataBackColorClass',
|
|
|
+ render: (a: any) => <Statistic value={a || 0} />
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '至今付费200+用户数', dataIndex: 'newUserTwoHundredUserNum', label: '付费数据', align: 'center', width: 85, sorter: true, className: 'payDataBackColorClass',
|
|
|
+ render: (a: any) => <Statistic value={a || 0} />
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '至今付费200+用户付费成本', dataIndex: 'newUserTwoHundredUserNumCost', label: '付费数据', align: 'center', width: 90, sorter: true, className: 'payDataBackColorClass',
|
|
|
+ render: (a: any) => <Statistic value={a || 0} />
|
|
|
+ },
|
|
|
{
|
|
|
title: '总充值次数', dataIndex: 'totalAmountCount', label: '付费数据', align: 'center', width: 50, className: 'payDataBackColorClass', sorter: true,
|
|
|
render: (a: any) => <Statistic value={a || 0} />
|