|
@@ -277,7 +277,7 @@ function columnsMonitor(details: (id: number) => void) {
|
|
|
key: 'thousandDisplayPrice',
|
|
|
align: 'center',
|
|
|
width: 115,
|
|
|
- sorter: true,
|
|
|
+ // sorter: true,
|
|
|
render: (a: any) => {
|
|
|
return <Statistic value={a ? a?.toFixed(2) : 0} />
|
|
|
}
|
|
@@ -299,7 +299,7 @@ function columnsMonitor(details: (id: number) => void) {
|
|
|
key: 'avgClickAmount',
|
|
|
align: 'center',
|
|
|
width: 115,
|
|
|
- sorter: true,
|
|
|
+ // sorter: true,
|
|
|
render: (a: any) => {
|
|
|
return <Statistic value={a ? a?.toFixed(2) : 0} />
|
|
|
}
|
|
@@ -310,7 +310,7 @@ function columnsMonitor(details: (id: number) => void) {
|
|
|
key: 'clickRate',
|
|
|
align: 'center',
|
|
|
width: 115,
|
|
|
- sorter: true,
|
|
|
+ // sorter: true,
|
|
|
render: (a: any) => {
|
|
|
a = a ? parseFloat((a * 100).toFixed(2)) : 0
|
|
|
return a + '%'
|
|
@@ -356,7 +356,7 @@ function columnsMonitor(details: (id: number) => void) {
|
|
|
key: 'conversionsCost',
|
|
|
align: 'center',
|
|
|
width: 115,
|
|
|
- sorter: true,
|
|
|
+ // sorter: true,
|
|
|
render: (a: any) => {
|
|
|
return <Statistic value={a ? a?.toFixed(2) : 0} />
|
|
|
}
|
|
@@ -367,7 +367,7 @@ function columnsMonitor(details: (id: number) => void) {
|
|
|
key: 'conversionsRate',
|
|
|
align: 'center',
|
|
|
width: 115,
|
|
|
- sorter: true,
|
|
|
+ // sorter: true,
|
|
|
render: (a: any) => {
|
|
|
a = a ? parseFloat((a * 100).toFixed(2)) : 0
|
|
|
return a + '%'
|
|
@@ -412,7 +412,7 @@ function columnsMonitor(details: (id: number) => void) {
|
|
|
key: 'orderCost',
|
|
|
align: 'center',
|
|
|
width: 115,
|
|
|
- sorter: true,
|
|
|
+ // sorter: true,
|
|
|
render: (a: any) => {
|
|
|
return <Statistic value={a ? a?.toFixed(2) : 0} />
|
|
|
}
|
|
@@ -423,7 +423,7 @@ function columnsMonitor(details: (id: number) => void) {
|
|
|
key: 'orderRate',
|
|
|
align: 'center',
|
|
|
width: 115,
|
|
|
- sorter: true,
|
|
|
+ // sorter: true,
|
|
|
render: (a: any) => {
|
|
|
a = a ? parseFloat((a * 100).toFixed(2)) : 0
|
|
|
return a + '%'
|
|
@@ -457,7 +457,7 @@ function columnsMonitor(details: (id: number) => void) {
|
|
|
key: 'atvAmount',
|
|
|
align: 'center',
|
|
|
width: 115,
|
|
|
- sorter: true,
|
|
|
+ // sorter: true,
|
|
|
render: (a: any) => {
|
|
|
return <Statistic value={a ? a?.toFixed(2) : 0} />
|
|
|
}
|
|
@@ -468,7 +468,7 @@ function columnsMonitor(details: (id: number) => void) {
|
|
|
key: 'orderROI',
|
|
|
align: 'center',
|
|
|
width: 115,
|
|
|
- sorter: true,
|
|
|
+ // sorter: true,
|
|
|
render: (a: any) => {
|
|
|
a = a ? parseFloat((a * 100).toFixed(2)) : 0
|
|
|
return a + '%'
|
|
@@ -480,7 +480,7 @@ function columnsMonitor(details: (id: number) => void) {
|
|
|
key: 'firstDayOrderRoi',
|
|
|
align: 'center',
|
|
|
width: 115,
|
|
|
- sorter: true,
|
|
|
+ // sorter: true,
|
|
|
render: (a: any) => {
|
|
|
a = a ? parseFloat((a * 100).toFixed(2)) : 0
|
|
|
return a + '%'
|
|
@@ -503,7 +503,7 @@ function columnsMonitor(details: (id: number) => void) {
|
|
|
key: 'mpFollowRate',
|
|
|
align: 'center',
|
|
|
width: 115,
|
|
|
- sorter: true,
|
|
|
+ // sorter: true,
|
|
|
render: (a: any) => {
|
|
|
a = a ? parseFloat((a * 100).toFixed(2)) : 0
|
|
|
return a + '%'
|
|
@@ -515,7 +515,7 @@ function columnsMonitor(details: (id: number) => void) {
|
|
|
key: 'mpFollowCost',
|
|
|
align: 'center',
|
|
|
width: 115,
|
|
|
- sorter: true,
|
|
|
+ // sorter: true,
|
|
|
render: (a: any) => {
|
|
|
return <Statistic value={a ? a?.toFixed(2) : 0} />
|
|
|
}
|