|
@@ -161,7 +161,7 @@
|
|
|
</span>
|
|
|
</template>
|
|
|
<template v-if="column.key === 'numSlot'">
|
|
|
- {{ record.clicks }} | {{ record.impressions }}
|
|
|
+ {{ record.impressions }} | {{ record.clicks }}
|
|
|
</template>
|
|
|
</template>
|
|
|
</a-table>
|
|
@@ -211,7 +211,7 @@ const chartDetailDataCol = ref([
|
|
|
key: 'countryName'
|
|
|
},
|
|
|
{
|
|
|
- title: '点击数 | 展示数',
|
|
|
+ title: '展示数 | 点击数',
|
|
|
key: 'numSlot',
|
|
|
align: 'right'
|
|
|
}
|
|
@@ -588,7 +588,7 @@ const getCountryStats = async () => {
|
|
|
// 处理地图数据
|
|
|
countryMapData.value = res.map(item => ({
|
|
|
name: item.countryName,
|
|
|
- value: item.clicks,
|
|
|
+ value: item.impressions,
|
|
|
}));
|
|
|
|
|
|
// 处理表格数据
|