|
@@ -529,7 +529,7 @@ function columnsMonitor(planDetail: (id: number) => void, details: (id: number)
|
|
|
key: 'add_fans_cost_day',
|
|
|
align: 'center',
|
|
|
width: 75,
|
|
|
- // sorter: true,
|
|
|
+ sorter: true,
|
|
|
render: (a: any) => {
|
|
|
return <Statistic value={a || 0} />
|
|
|
}
|
|
@@ -539,8 +539,8 @@ function columnsMonitor(planDetail: (id: number) => void, details: (id: number)
|
|
|
dataIndex: 'mp_follow_pv_cost_day',
|
|
|
key: 'mp_follow_pv_cost_day',
|
|
|
align: 'center',
|
|
|
- width: 80,
|
|
|
- // sorter: true,
|
|
|
+ width: 100,
|
|
|
+ sorter: true,
|
|
|
render: (a: any) => {
|
|
|
return <Statistic value={a || 0} />
|
|
|
}
|
|
@@ -551,7 +551,7 @@ function columnsMonitor(planDetail: (id: number) => void, details: (id: number)
|
|
|
key: 'add_fans_count_day',
|
|
|
align: 'center',
|
|
|
width: 75,
|
|
|
- // sorter: true,
|
|
|
+ sorter: true,
|
|
|
render: (a: any) => {
|
|
|
return <Statistic value={a || 0} />
|
|
|
}
|
|
@@ -561,8 +561,8 @@ function columnsMonitor(planDetail: (id: number) => void, details: (id: number)
|
|
|
dataIndex: 'mp_follow_pv_day',
|
|
|
key: 'mp_follow_pv_day',
|
|
|
align: 'center',
|
|
|
- width: 75,
|
|
|
- // sorter: true,
|
|
|
+ width: 80,
|
|
|
+ sorter: true,
|
|
|
render: (a: any) => {
|
|
|
return <Statistic value={a || 0} />
|
|
|
}
|
|
@@ -572,8 +572,8 @@ function columnsMonitor(planDetail: (id: number) => void, details: (id: number)
|
|
|
dataIndex: 'scan_follow_uv_day',
|
|
|
key: 'scan_follow_uv_day',
|
|
|
align: 'center',
|
|
|
- width: 80,
|
|
|
- // sorter: true,
|
|
|
+ width: 100,
|
|
|
+ sorter: true,
|
|
|
render: (a: any) => {
|
|
|
return <Statistic value={a || 0} />
|
|
|
}
|
|
@@ -583,8 +583,8 @@ function columnsMonitor(planDetail: (id: number) => void, details: (id: number)
|
|
|
dataIndex: 'scan_follow_cost_day',
|
|
|
key: 'scan_follow_cost_day',
|
|
|
align: 'center',
|
|
|
- width: 80,
|
|
|
- // sorter: true,
|
|
|
+ width: 100,
|
|
|
+ sorter: true,
|
|
|
render: (a: any) => {
|
|
|
return <Statistic value={a || 0} />
|
|
|
}
|
|
@@ -594,8 +594,8 @@ function columnsMonitor(planDetail: (id: number) => void, details: (id: number)
|
|
|
dataIndex: 'scan_follow_rate_day',
|
|
|
key: 'scan_follow_rate_day',
|
|
|
align: 'center',
|
|
|
- width: 80,
|
|
|
- // sorter: true,
|
|
|
+ width: 90,
|
|
|
+ sorter: true,
|
|
|
render: (a: any) => {
|
|
|
a = a ? parseFloat((a * 100).toFixed(2)) : 0
|
|
|
return a + '%'
|