wjx 1 year ago
parent
commit
9fe16c5587

+ 2 - 2
src/pages/launchSystemV3/adMonitorListV3/config.ts

@@ -160,9 +160,9 @@ const qiliangpaihanghour = [
         data: [
             { title: '公众号关注人数', dataIndex: 'mp_follow_uv_day', label: '转化', default: 6, width: 85 },
             { title: '公众号关注率', dataIndex: 'mp_follow_rate_day', label: '转化', width: 70 },
-            { title: '公众号关注成本', dataIndex: 'mp_follow_cost_day', label: '转化', width: 85 },
+            { title: '公众号关注成本', dataIndex: 'mp_follow_cost_day', label: '转化', width: 90 },
             { title: '加粉成本', dataIndex: 'add_fans_cost_day', label: '转化' },
-            { title: '公众号关注次数成本', dataIndex: 'mp_follow_pv_cost_day', label: '转化' },
+            { title: '公众号关注次数成本', dataIndex: 'mp_follow_pv_cost_day', label: '转化', width: 100 },
             { title: '加粉数', dataIndex: 'add_fans_count_day', label: '转化' },
             { title: '公众号关注次数', dataIndex: 'mp_follow_pv_day', label: '转化' },
             { title: '加企业微信客服人数', dataIndex: 'scan_follow_uv_day', label: '转化' },

+ 12 - 12
src/pages/launchSystemV3/adMonitorListV3/tableMonitorConfig.tsx

@@ -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 + '%'