wjx 2 anni fa
parent
commit
bff7f60d28

+ 4 - 4
src/pages/adMonitor/adMonitorList/config.ts

@@ -231,7 +231,7 @@ const guanggao = [
         label: '曝光',
         data: [
             { title: '曝光量(曝光次数)', dataIndex: 'viewCount', label: '曝光' },
-            { title: '千次曝光成本', dataIndex: 'thousandDisplayPriceTotal', label: '曝光' },
+            { title: '千次曝光成本', dataIndex: 'thousandDisplayPrice', label: '曝光' },
         ]
     },
     {
@@ -257,14 +257,14 @@ const guanggao = [
         label: '商品转化',
         data: [
             { title: '下单量', dataIndex: 'orderCount', label: '商品转化', width: 70 },
-            { title: '首日新增下单量', dataIndex: 'firstDayOrderCountTotal', label: '商品转化', width: 80 },
+            { title: '首日新增下单量', dataIndex: 'firstDayOrderCount', label: '商品转化', width: 80 },
             { title: '下单成本', dataIndex: 'orderCost', label: '商品转化', width: 75 },
             { title: '下单率', dataIndex: 'orderRate', label: '商品转化', width: 70 },
             { title: '下单金额', dataIndex: 'orderAmount', label: '商品转化', width: 70 },
-            { title: '首日新增下单金额', dataIndex: 'firstDayOrderAmountTotal', label: '商品转化', width: 75 },
+            { title: '首日新增下单金额', dataIndex: 'firstDayOrderAmount', label: '商品转化', width: 75 },
             { title: '下单客单价', dataIndex: 'atvAmount', label: '商品转化', width: 70 },
             { title: '下单ROI', dataIndex: 'orderROI', label: '商品转化', width: 75 },
-            { title: '首日新增下单ROI', dataIndex: 'firstDayOrderRoiTotal', label: '商品转化', width: 90 },
+            { title: '首日新增下单ROI', dataIndex: 'firstDayOrderRoi', label: '商品转化', width: 90 },
         ]
     },
     {

+ 10 - 9
src/pages/adMonitor/adMonitorList/tablePlanListConfig.tsx

@@ -170,8 +170,9 @@ function columnsMonitor(details: (id: number) => void) {
                 key: 'promotedObjectType',
                 align: 'center',
                 width: 80,
+                ellipsis: true,
                 render: (a: any) => {
-                    return <div className='oneText'>{TUIGUANGMUBIAO[a] || '推广公众号'}</div>
+                    return TUIGUANGMUBIAO[a] || '推广公众号'
                 }
             },
             // {
@@ -272,8 +273,8 @@ function columnsMonitor(details: (id: number) => void) {
             },
             {
                 title: '千次曝光成本',
-                dataIndex: 'thousandDisplayPriceTotal',
-                key: 'thousandDisplayPriceTotal',
+                dataIndex: 'thousandDisplayPrice',
+                key: 'thousandDisplayPrice',
                 align: 'center',
                 width: 115,
                 sorter: true,
@@ -396,8 +397,8 @@ function columnsMonitor(details: (id: number) => void) {
             },
             {
                 title: '首日新增下单量',
-                dataIndex: 'firstDayOrderCountTotal',
-                key: 'firstDayOrderCountTotal',
+                dataIndex: 'firstDayOrderCount',
+                key: 'firstDayOrderCount',
                 align: 'center',
                 width: 115,
                 sorter: true,
@@ -441,8 +442,8 @@ function columnsMonitor(details: (id: number) => void) {
             },
             {
                 title: '首日新增下单金额',
-                dataIndex: 'firstDayOrderAmountTotal',
-                key: 'firstDayOrderAmountTotal',
+                dataIndex: 'firstDayOrderAmount',
+                key: 'firstDayOrderAmount',
                 align: 'center',
                 width: 115,
                 sorter: true,
@@ -475,8 +476,8 @@ function columnsMonitor(details: (id: number) => void) {
             },
             {
                 title: '首日新增下单ROI',
-                dataIndex: 'firstDayOrderRoiTotal',
-                key: 'firstDayOrderRoiTotal',
+                dataIndex: 'firstDayOrderRoi',
+                key: 'firstDayOrderRoi',
                 align: 'center',
                 width: 115,
                 sorter: true,