|
@@ -394,7 +394,6 @@ function columns12(): { label: string, fieldSHow?: { label: string, saveField: s
|
|
|
title: '应用端累计回收(应用端)', dataIndex: 'appTotalRecycle', label: '应用数据', align: 'right', width: 90, sorter: true, className: 'appColorClass',
|
|
|
render: (a: number) => <Statistic value={a ? a * 100 : 0} precision={2} valueStyle={!a ? {} : a >= 50 ? { color: 'red' } : { color: '#0f990f' }} suffix="%" />
|
|
|
},
|
|
|
-
|
|
|
{
|
|
|
title: '人均广告曝光次数(应用端)', dataIndex: 'avgExposureCount', tips: '计算公式:曝光量/每日活跃人数DAU', label: '应用数据', align: 'center', width: 100, sorter: true, className: 'appColorClass',
|
|
|
render: (a: number) => <Statistic value={a || 0} />
|
|
@@ -407,6 +406,10 @@ function columns12(): { label: string, fieldSHow?: { label: string, saveField: s
|
|
|
title: '应用端广告总ARPU(应用端)', dataIndex: 'appAdTotalArpu', tips: '计算公式:应用端累计变现收入/累计注册人数', label: '应用数据', align: 'center', width: 110, sorter: true, className: 'appColorClass',
|
|
|
render: (a: number) => <Statistic value={a || 0} precision={2} />
|
|
|
},
|
|
|
+ {
|
|
|
+ title: '应用端每日变现增长率', dataIndex: 'appIncomeRate', tips: '应用端每日变现收入(应用端)/累计消耗', label: '充值数据', align: 'center', width: 100, sorter: true, className: 'appColorClass', default: 36,
|
|
|
+ render: (a: number) => <Statistic value={a ? a * 100 : 0} precision={2} valueStyle={!a ? {} : a >= 0.5 ? { color: 'red' } : { color: '#0f990f' }} suffix="%" />
|
|
|
+ },
|
|
|
]
|
|
|
},
|
|
|
{
|
|
@@ -430,11 +433,7 @@ function columns12(): { label: string, fieldSHow?: { label: string, saveField: s
|
|
|
render: (a: number) => <Statistic value={a || 0} precision={2} />
|
|
|
},
|
|
|
{
|
|
|
- title: '今日账面混变回收率', dataIndex: 'appOrderIncomeRate', label: '充值数据', align: 'center', width: 95, sorter: true, className: 'czColorClass', default: 35,
|
|
|
- render: (a: number) => <Statistic value={a ? a * 100 : 0} precision={2} valueStyle={!a ? {} : a >= 0.5 ? { color: 'red' } : { color: '#0f990f' }} suffix="%" />
|
|
|
- },
|
|
|
- {
|
|
|
- title: '应用端每日变现增长率', dataIndex: 'appIncomeRate', tips: '应用端每日变现收入(应用端)/累计消耗', label: '充值数据', align: 'center', width: 100, sorter: true, className: 'czColorClass', default: 36,
|
|
|
+ title: '今日混变增长率', dataIndex: 'appOrderIncomeRate', tips: '今日混变收入/累计消耗', label: '充值数据', align: 'center', width: 95, sorter: true, className: 'czColorClass', default: 35,
|
|
|
render: (a: number) => <Statistic value={a ? a * 100 : 0} precision={2} valueStyle={!a ? {} : a >= 0.5 ? { color: 'red' } : { color: '#0f990f' }} suffix="%" />
|
|
|
},
|
|
|
{
|