wjx пре 8 месеци
родитељ
комит
10cc12cc75

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

@@ -213,7 +213,7 @@ const dynamicConfig = [
             { title: '公众号关注人数(点击归因)', dataIndex: 'from_follow_by_click_uv_day', serverIndex: 'creative_data.from_follow_by_click_uv_day', label: '广告转化信息', width: 85 },
             { title: '公众号关注成本(点击归因)', dataIndex: 'from_follow_by_click_cost_day', serverIndex: 'creative_data.from_follow_by_click_cost_day', label: '广告转化信息', width: 85 },
             { title: '公众号关注率(点击归因)', dataIndex: 'biz_follow_rate_click', serverIndex: 'calculate_creative_data.biz_follow_rate_click', label: '广告转化信息', width: 85 },
-            { title: '公众号关注人数(平台上报)', dataIndex: 'biz_follow_uv_total', serverIndex: 'creative_data.biz_follow_uv_total', label: '广告转化信息', width: 85 },
+            { title: '公众号关注人数(平台上报)', dataIndex: 'biz_follow_uv_day', serverIndex: 'creative_data.biz_follow_uv_day', label: '广告转化信息', width: 85 },
             { title: '公众号关注成本(平台上报)', dataIndex: 'biz_follow_cost', serverIndex: 'calculate_creative_data.biz_follow_cost', label: '广告转化信息', width: 85 },
             { title: '公众号关注率(平台上报)', dataIndex: 'biz_follow_rate', serverIndex: 'calculate_creative_data.biz_follow_rate', label: '广告转化信息', width: 85 },
             { title: '目标转化量', dataIndex: 'conversions_count_day', serverIndex: 'creative_data.conversions_count_day', label: '广告转化信息', width: 70 },

+ 3 - 3
src/pages/launchSystemV3/adMonitorListV3/tableDynamicConfig.tsx

@@ -247,13 +247,13 @@ function tableDynamicConfig(
         },
         {
             title: '公众号关注人数(平台上报)',
-            dataIndex: 'biz_follow_uv_total',
-            key: 'biz_follow_uv_total',
+            dataIndex: 'biz_follow_uv_day',
+            key: 'biz_follow_uv_day',
             align: 'center',
             width: 120,
             sorter: true,
             render: (a: any, b: any) => {
-                return <StatisticNull data={b} field='biz_follow_uv_total' />
+                return <StatisticNull data={b} field='biz_follow_uv_day' />
             }
         },
         {