wjx 5 月之前
父节点
当前提交
408a3f6310

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

@@ -135,6 +135,7 @@ const planAdConfig = [
             { title: '注册次数', serverIndex: 'adgroup_data.reg_pv_total', dataIndex: 'reg_pv_total', label: '其他业务(其他指标)', width: 80 },
             { title: '注册人数', serverIndex: 'adgroup_data.reg_dedup_pv_total', dataIndex: 'reg_dedup_pv_total', label: '其他业务(其他指标)', width: 80 },
             { title: '注册成本', serverIndex: 'adgroup_data.reg_cost_total', dataIndex: 'reg_cost_total', label: '其他业务(其他指标)', width: 80 },
+            { title: '注册次数成本', serverIndex: 'adgroup_data.reg_pv_cost_total', dataIndex: 'reg_pv_cost_total', label: '其他业务(其他指标)', width: 80 },
             { title: '注册率', serverIndex: 'adgroup_data.reg_rate_total', dataIndex: 'reg_rate_total', label: '其他业务(其他指标)', width: 80 },
             { title: '激活注册率', serverIndex: 'adgroup_data.activate_register_rate_total', dataIndex: 'activate_register_rate_total', label: '其他业务(其他指标)', width: 80 },
             { title: '次日留存人数', serverIndex: 'adgroup_data.mini_game_retention_d1_total', dataIndex: 'mini_game_retention_d1_total', label: '其他业务(其他指标)', width: 80 },
@@ -404,6 +405,7 @@ const dynamicConfig = [
             { title: '注册次数', serverIndex: 'creative_data.reg_pv_day', dataIndex: 'reg_pv_day', label: '其他业务(其他指标)', width: 80 },
             { title: '注册人数', serverIndex: 'creative_data.reg_dedup_pv_day', dataIndex: 'reg_dedup_pv_day', label: '其他业务(其他指标)', width: 80 },
             { title: '注册成本', serverIndex: 'calculate_creative_data.reg_cost', dataIndex: 'reg_cost', label: '其他业务(其他指标)', width: 80 },
+            { title: '注册次数成本', serverIndex: 'calculate_creative_data.reg_pv_cost', dataIndex: 'reg_pv_cost', label: '其他业务(其他指标)', width: 80 },
             { title: '注册率', serverIndex: 'calculate_creative_data.reg_rate', dataIndex: 'reg_rate', label: '其他业务(其他指标)', width: 80 },
             { title: '激活注册率', serverIndex: 'calculate_creative_data.activate_register_rate', dataIndex: 'activate_register_rate', label: '其他业务(其他指标)', width: 80 },
             { title: '次日留存人数', serverIndex: 'creative_data.mini_game_retention_d1_day', dataIndex: 'mini_game_retention_d1_day', label: '其他业务(其他指标)', width: 80 },

+ 11 - 0
src/pages/launchSystemV3/adMonitorListV3/tableDynamicConfig.tsx

@@ -1560,6 +1560,17 @@ function tableDynamicConfig(
                 return <StatisticNull data={b} field='reg_cost' />
             }
         },
+        {
+            title: '注册次数成本',
+            dataIndex: 'reg_pv_cost',
+            key: 'reg_pv_cost',
+            align: 'center',
+            width: 110,
+            sorter: true,
+            render: (a: any, b: any) => {
+                return <StatisticNull data={b} field='reg_pv_cost' />
+            }
+        },
         {
             title: '注册率',
             dataIndex: 'reg_rate',

+ 11 - 0
src/pages/launchSystemV3/adMonitorListV3/tablePlanListConfig.tsx

@@ -1458,6 +1458,17 @@ function tablePlanConfig(
                 return <StatisticNull data={b} field='reg_cost_total' />
             }
         },
+        {
+            title: '注册次数成本',
+            dataIndex: 'reg_pv_cost_total',
+            key: 'reg_pv_cost_total',
+            align: 'center',
+            width: 110,
+            sorter: true,
+            render: (a: any, b: any) => {
+                return <StatisticNull data={b} field='reg_pv_cost_total' />
+            }
+        },
         {
             title: '注册率',
             dataIndex: 'reg_rate_total',