Pārlūkot izejas kodu

Refactor googleads.vue to improve CTR display and remove unused columns

- Updated the CTR button label to include percentage symbol for clarity.
- Adjusted the calculation of CTR to display as a percentage in the data mapping.
- Removed unused columns related to bidding strategy and daily budget for a cleaner UI.
- Enhanced the custom rendering of CTR to ensure proper formatting in the table.
zq940222 3 mēneši atpakaļ
vecāks
revīzija
f1ba8e714c
1 mainītis faili ar 7 papildinājumiem un 24 dzēšanām
  1. 7 24
      src/views/adweb/marketing/googleads.vue

+ 7 - 24
src/views/adweb/marketing/googleads.vue

@@ -86,7 +86,7 @@
                         @click="switchChart('impression')">展示</a-button>
                       <a-button :class="{ active: activeChart === 'clicks' }"
                         @click="switchChart('clicks')">点击</a-button>
-                      <a-button :class="{ active: activeChart === 'ctr' }" @click="switchChart('ctr')">点击率</a-button>
+                      <a-button :class="{ active: activeChart === 'ctr' }" @click="switchChart('ctr')">点击率(%)</a-button>
                       <a-button :class="{ active: activeChart === 'conversion' }"
                         @click="switchChart('conversion')">转化数</a-button>
                       <a-button :class="{ active: activeChart === 'cost' }" @click="switchChart('cost')">花费</a-button>
@@ -175,8 +175,7 @@
 </template>
 
 <script setup lang="ts" name="marketing-googleads">
-import { getAction } from '@/api/manage/manage';
-import { ref, reactive, onMounted } from 'vue';
+import { ref, reactive } from 'vue';
 import dayjs from 'dayjs';
 import selectSite from "@/components/Adweb/selectSite.vue";
 import LineChart from './charts/Line.vue';
@@ -298,7 +297,7 @@ const getDailyStats = async () => {
         dates: sortedData.map(item => item.date),
         impression: sortedData.map(item => Number(item.impressions) || 0),
         clicks: sortedData.map(item => Number(item.clicks) || 0),
-        ctr: sortedData.map(item => Number(item.ctr) || 0),
+        ctr: sortedData.map(item => (Number(item.ctr) * 100).toFixed(2) || 0.00),
         conversion: sortedData.map(item => Number(item.conversions) || 0),
         cost: sortedData.map(item => Number(item.cost) || 0)
       };
@@ -343,16 +342,6 @@ const campaignColumns = ref([
     key: 'advertisingChannelType',
   },
   {
-    title: '出价策略',
-    dataIndex: 'biddingStrategyType',
-    key: 'biddingStrategyType',
-  },
-  {
-    title: '每日预算',
-    dataIndex: 'budget',
-    key: 'budget',
-  },
-  {
     title: '展示数',
     dataIndex: 'impressions',
     key: 'impressions',
@@ -363,10 +352,12 @@ const campaignColumns = ref([
     key: 'clicks',
   },
   {
-    title: '点击率',
+    title: '点击率(%)',
     dataIndex: 'ctr',
     key: 'ctr',
-    customRender: ({ text }) => `${text.toFixed(2)}`
+    customRender: ({ text }) => {
+            return text ? (Number(text) * 100).toFixed(2) + '%' : '0.00%';
+        },
   },
   {
     title: 'CPC',
@@ -377,14 +368,6 @@ const campaignColumns = ref([
     customRender: ({ text }) => `${text.toFixed(2)}`
   },
   {
-    title: 'CPM',
-    dataIndex: 'averageCpm',
-    key: 'cpm',
-    slots: { customRender: 'cpm' },
-    tooltip: '千次展示费用',
-    customRender: ({ text }) => `${text.toFixed(2)}`  
-  },
-  {
     title: '转化数',
     dataIndex: 'conversions',
     key: 'conversions',