|
@@ -387,7 +387,7 @@ function tablePlanConfig(
|
|
|
width: 110,
|
|
|
sorter: true,
|
|
|
render: (a: any, b: any) => {
|
|
|
- return <StatisticNull data={b} field='thousand_display_price_total' />
|
|
|
+ return <StatisticNull data={b} field='thousand_display_price_total' precision={2} />
|
|
|
}
|
|
|
},
|
|
|
{
|
|
@@ -538,7 +538,7 @@ function tablePlanConfig(
|
|
|
width: 120,
|
|
|
sorter: true,
|
|
|
render: (a: any, b: any) => {
|
|
|
- return <StatisticNull data={b} field='mp_follow_pv_cost_total' />
|
|
|
+ return <StatisticNull data={b} field='mp_follow_pv_cost_total' precision={2}/>
|
|
|
}
|
|
|
},
|
|
|
{
|
|
@@ -597,7 +597,7 @@ function tablePlanConfig(
|
|
|
width: 120,
|
|
|
sorter: true,
|
|
|
render: (a: any, b: any) => {
|
|
|
- return <StatisticNull data={b} field='scan_follow_cost_total' />
|
|
|
+ return <StatisticNull data={b} field='scan_follow_cost_total' precision={2} />
|
|
|
}
|
|
|
},
|
|
|
{
|
|
@@ -684,7 +684,7 @@ function tablePlanConfig(
|
|
|
width: 110,
|
|
|
sorter: true,
|
|
|
render: (a: any, b: any) => {
|
|
|
- return <StatisticNull data={b} field='order_cost_total' />
|
|
|
+ return <StatisticNull data={b} field='order_cost_total' precision={2} />
|
|
|
}
|
|
|
},
|
|
|
{
|
|
@@ -725,7 +725,7 @@ function tablePlanConfig(
|
|
|
width: 110,
|
|
|
sorter: true,
|
|
|
render: (a: any, b: any) => {
|
|
|
- return <StatisticNull data={b} field='atv_total' />
|
|
|
+ return <StatisticNull data={b} field='atv_total' precision={2} />
|
|
|
}
|
|
|
},
|
|
|
{
|
|
@@ -747,7 +747,7 @@ function tablePlanConfig(
|
|
|
width: 110,
|
|
|
sorter: true,
|
|
|
render: (a: any, b: any) => {
|
|
|
- return <StatisticNull data={b} field='conversions_cost_total' />
|
|
|
+ return <StatisticNull data={b} field='conversions_cost_total' precision={2} />
|
|
|
}
|
|
|
},
|
|
|
{
|
|
@@ -795,7 +795,7 @@ function tablePlanConfig(
|
|
|
width: 110,
|
|
|
sorter: true,
|
|
|
render: (a: any, b: any) => {
|
|
|
- return <StatisticNull data={b} field='add_fans_cost_total' />
|
|
|
+ return <StatisticNull data={b} field='add_fans_cost_total' precision={2} />
|
|
|
}
|
|
|
},
|
|
|
]
|