wjx 8 mēneši atpakaļ
vecāks
revīzija
f15a88c684

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

@@ -13,7 +13,8 @@ const planAdConfig = [
             { title: '投放时间', dataIndex: 'time_series', serverIndex: 'adgroup.time_series', label: '广告详情', default: 9, width: 55 },
             { title: '首日开始投放时间', dataIndex: 'first_day_begin_time', serverIndex: 'adgroup.first_day_begin_time', label: '广告详情', default: 10, width: 70 },
             { title: '出价', dataIndex: 'bid_amount', serverIndex: 'adgroup.bid_amount,adgroup.bid_mode,adgroup.optimization_goal', label: '广告详情', default: 11, width: 140 },
-            { title: '深度优化行为出价', dataIndex: 'deep_conversion_behavior_bid', serverIndex: 'adgroup.deep_conversion_behavior_bid', label: '广告详情', default: 12, width: 70 },
+            { title: '深度优化行为出价', dataIndex: 'deep_conversion_behavior_bid', serverIndex: 'adgroup.deep_conversion_worth_rate', label: '广告详情', default: 12, width: 70 },
+            // { title: '深度优化行为出价', dataIndex: 'deep_conversion_behavior_bid', serverIndex: 'adgroup.deep_conversion_behavior_bid', label: '广告详情', default: 12, width: 70 },
             { title: '出价类型', dataIndex: 'smart_bid_type', serverIndex: 'adgroup.smart_bid_type', label: '广告详情', default: 13, width: 80 },
             { title: '出价策略', dataIndex: 'bid_strategy', serverIndex: 'adgroup.bid_strategy', label: '广告详情', default: 14, width: 80 },
             { title: '广告组日预算(元)', dataIndex: 'daily_budget', serverIndex: 'adgroup.daily_budget', label: '广告详情', default: 15, width: 80 },

+ 3 - 4
src/pages/launchSystemV3/adMonitorListV3/tablePlanListConfig.tsx

@@ -162,19 +162,18 @@ function tablePlanConfig(
             }
         },
         {
-            title: '深度优化行为出价',
+            title: '深度优化出价',
             dataIndex: 'deep_conversion_behavior_bid',
             key: 'deep_conversion_behavior_bid',
             width: 70,
             align: 'center',
-            render: (a: string, b: { deep_conversion_spec_json: any, account_id: any }) => {
+            render: (a: string, b: { deep_conversion_spec_json: any, deep_conversion_worth_rate: number, account_id: any }) => {
                 if (b?.account_id === '总计') return '--';
                 if (b?.deep_conversion_spec_json) {
-                    return a
+                    return b?.deep_conversion_worth_rate
                 } else {
                     return '--'
                 }
-
             }
         },
         {