|
@@ -98,11 +98,11 @@ function columns12(): { label: string, fieldSHow?: { label: string, saveField: s
|
|
|
},
|
|
|
{
|
|
|
title: '千次曝光成本(广告)', dataIndex: 'avgShowCost', label: '广告媒体端指标', align: 'right', width: 80, default: 13, sorter: true, className: 'purple1ColorClass',
|
|
|
- render: (a: number) => <Statistic value={a || 0} />
|
|
|
+ render: (a: number) => <Statistic value={a || 0} precision={2}/>
|
|
|
},
|
|
|
{
|
|
|
title: '点击均价(广告)', dataIndex: 'avgClickCost', label: '广告媒体端指标', align: 'right', width: 65, default: 14, sorter: true, className: 'purple1ColorClass',
|
|
|
- render: (a: number) => <Statistic value={a || 0} />
|
|
|
+ render: (a: number) => <Statistic value={a || 0} precision={2}/>
|
|
|
},
|
|
|
{
|
|
|
title: '点击率(广告)', dataIndex: 'ctr', label: '广告媒体端指标', align: 'center', width: 80, default: 15, sorter: true, className: 'purple1ColorClass',
|
|
@@ -114,7 +114,7 @@ function columns12(): { label: string, fieldSHow?: { label: string, saveField: s
|
|
|
},
|
|
|
{
|
|
|
title: '转化目标成本', dataIndex: 'convertCost', label: '广告媒体端指标', align: 'right', width: 65, default: 17, sorter: true, className: 'purple1ColorClass',
|
|
|
- render: (a: number) => <Statistic value={a || 0} />
|
|
|
+ render: (a: number) => <Statistic value={a || 0} precision={2}/>
|
|
|
},
|
|
|
{
|
|
|
title: '转化目标率', dataIndex: 'convertRate', label: '广告媒体端指标', align: 'center', width: 80, default: 18, sorter: true, className: 'purple1ColorClass',
|
|
@@ -126,7 +126,7 @@ function columns12(): { label: string, fieldSHow?: { label: string, saveField: s
|
|
|
},
|
|
|
{
|
|
|
title: '激活成本(广告)', dataIndex: 'activeCost', label: '广告媒体端指标', align: 'right', width: 65, default: 20, sorter: true, className: 'purple1ColorClass',
|
|
|
- render: (a: number) => <Statistic value={a || 0} />
|
|
|
+ render: (a: number) => <Statistic value={a || 0} precision={2}/>
|
|
|
},
|
|
|
{
|
|
|
title: '激活率(广告)', dataIndex: 'activeRate', label: '广告媒体端指标', align: 'center', width: 80, default: 21, sorter: true, className: 'purple1ColorClass',
|
|
@@ -138,7 +138,7 @@ function columns12(): { label: string, fieldSHow?: { label: string, saveField: s
|
|
|
},
|
|
|
{
|
|
|
title: '注册成本(广告)', dataIndex: 'activeRegisterCost', label: '广告媒体端指标', align: 'right', width: 65, default: 23, sorter: true, className: 'purple1ColorClass',
|
|
|
- render: (a: number) => <Statistic value={a || 0} />
|
|
|
+ render: (a: number) => <Statistic value={a || 0} precision={2}/>
|
|
|
},
|
|
|
{
|
|
|
title: '注册率(广告)', dataIndex: 'activeRegisterRate', label: '广告媒体端指标', align: 'center', width: 80, default: 24, sorter: true, className: 'purple1ColorClass',
|
|
@@ -336,15 +336,15 @@ function columns12(): { label: string, fieldSHow?: { label: string, saveField: s
|
|
|
},
|
|
|
{
|
|
|
title: '今日新增用户成本(应用)', dataIndex: 'newUserCost', label: '应用媒体数据', align: 'right', width: 80, sorter: true,
|
|
|
- render: (a: number) => <Statistic value={a || 0} />
|
|
|
+ render: (a: number) => <Statistic value={a || 0} precision={2}/>
|
|
|
},
|
|
|
{
|
|
|
title: '人均新增成本(应用)', dataIndex: 'avgNewCost', label: '应用媒体数据', align: 'right', width: 80, sorter: true,
|
|
|
- render: (a: number) => <Statistic value={a || 0} />
|
|
|
+ render: (a: number) => <Statistic value={a || 0} precision={2}/>
|
|
|
},
|
|
|
{
|
|
|
title: '人均活跃成本(应用)', dataIndex: 'avgActiveCost1', label: '应用媒体数据', align: 'right', width: 80, sorter: true,
|
|
|
- render: (a: number) => <Statistic value={a || 0} />
|
|
|
+ render: (a: number) => <Statistic value={a || 0} precision={2}/>
|
|
|
},
|
|
|
{
|
|
|
title: '分享次数', dataIndex: 'shareTime', label: '应用媒体数据', align: 'center', width: 70, sorter: true,
|
|
@@ -398,7 +398,7 @@ function columns12(): { label: string, fieldSHow?: { label: string, saveField: s
|
|
|
},
|
|
|
{
|
|
|
title: '首日激活用户成本(应用)', dataIndex: 'costPerAction', label: '应用媒体数据', align: 'right', width: 85, sorter: true,
|
|
|
- render: (a: number) => <Statistic value={a || 0} />
|
|
|
+ render: (a: number) => <Statistic value={a || 0} precision={2}/>
|
|
|
},
|
|
|
{
|
|
|
title: '注册用户首日激活率(应用)', dataIndex: 'firstUserRate', label: '应用媒体数据', align: 'center', width: 90, sorter: true,
|
|
@@ -406,7 +406,7 @@ function columns12(): { label: string, fieldSHow?: { label: string, saveField: s
|
|
|
},
|
|
|
{
|
|
|
title: '激活首日新增广告收入(应用)', dataIndex: 'newAdIncome', label: '应用媒体数据', align: 'right', width: 90, sorter: true,
|
|
|
- render: (a: number) => <Statistic value={a || 0} />
|
|
|
+ render: (a: number) => <Statistic value={a || 0} precision={2}/>
|
|
|
},
|
|
|
{
|
|
|
title: '激活首日新增广告ROI(应用)', dataIndex: 'newAdRoi', label: '应用媒体数据', align: 'center', width: 90, sorter: true,
|
|
@@ -462,11 +462,11 @@ function columns12(): { label: string, fieldSHow?: { label: string, saveField: s
|
|
|
},
|
|
|
{
|
|
|
title: '累计广告变现收入(应用)', dataIndex: 'totalAdIncome', label: '应用媒体数据', align: 'right', width: 90, sorter: true,
|
|
|
- render: (a: number) => <Statistic value={a || 0} />
|
|
|
+ render: (a: number) => <Statistic value={a || 0} precision={2}/>
|
|
|
},
|
|
|
{
|
|
|
title: '广告变现累计利润(应用)', dataIndex: 'totalAdProfit', label: '应用媒体数据', align: 'right', width: 90, sorter: true,
|
|
|
- render: (a: number) => <Statistic value={a || 0} />
|
|
|
+ render: (a: number) => <Statistic value={a || 0} precision={2}/>
|
|
|
},
|
|
|
{
|
|
|
title: '广告变现成本利润率(应用)', dataIndex: 'totalAdProfitRate', label: '应用媒体数据', align: 'center', width: 90, sorter: true,
|