|
|
@@ -188,6 +188,30 @@
|
|
|
</template>
|
|
|
</a-popover>
|
|
|
</template>
|
|
|
+ <template #parse_total_count="{ record }">
|
|
|
+ <a-popover v-if="record.parse_total_count > 0" popup-container="body" trigger="click">
|
|
|
+ <a-tag color="green">{{ record.parse_total_count }}</a-tag>
|
|
|
+ <template #content>
|
|
|
+ <CategoriesPercent total_key="parse_total" :record="record" />
|
|
|
+ </template>
|
|
|
+ </a-popover>
|
|
|
+ </template>
|
|
|
+ <template #coupon_total_count="{ record }">
|
|
|
+ <a-popover v-if="record.coupon_total_count > 0" popup-container="body" trigger="click">
|
|
|
+ <a-tag color="green">{{ record.coupon_total_count }}</a-tag>
|
|
|
+ <template #content>
|
|
|
+ <CategoriesPercent total_key="coupon_total" :record="record" />
|
|
|
+ </template>
|
|
|
+ </a-popover>
|
|
|
+ </template>
|
|
|
+ <template #tool_total_count="{ record }">
|
|
|
+ <a-popover v-if="record.tool_total_count > 0" popup-container="body" trigger="click">
|
|
|
+ <a-tag color="green">{{ record.tool_total_count }}</a-tag>
|
|
|
+ <template #content>
|
|
|
+ <CategoriesPercent total_key="tool_total" :record="record" />
|
|
|
+ </template>
|
|
|
+ </a-popover>
|
|
|
+ </template>
|
|
|
</a-table>
|
|
|
</a-card>
|
|
|
</div>
|
|
|
@@ -299,12 +323,6 @@ const columns = computed<TableColumnData[]>(() => [
|
|
|
width: 100,
|
|
|
align: 'right'
|
|
|
},
|
|
|
- {
|
|
|
- title: '点击次数(修正)',
|
|
|
- dataIndex: 'fix_uclk_pv_56',
|
|
|
- width: 130,
|
|
|
- align: 'right'
|
|
|
- },
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
@@ -419,42 +437,149 @@ const columns = computed<TableColumnData[]>(() => [
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
- title: 'API调用',
|
|
|
+ title: '第三方API调用',
|
|
|
children: [
|
|
|
{
|
|
|
- title: '调用总数',
|
|
|
+ title: '调用',
|
|
|
dataIndex: 'total_count',
|
|
|
slotName: 'total_count',
|
|
|
- width: 100,
|
|
|
+ width: 80,
|
|
|
align: 'right'
|
|
|
},
|
|
|
{
|
|
|
- title: '转链成功',
|
|
|
+ title: '成功',
|
|
|
dataIndex: 'success_count',
|
|
|
- width: 100,
|
|
|
+ width: 90,
|
|
|
align: 'right'
|
|
|
},
|
|
|
{
|
|
|
- title: '转链成功(%)',
|
|
|
+ title: '成功(%)',
|
|
|
dataIndex: 'success_percentage',
|
|
|
- width: 120,
|
|
|
+ width: 90,
|
|
|
align: 'right'
|
|
|
},
|
|
|
{
|
|
|
- title: '放弃转链',
|
|
|
+ title: '放弃',
|
|
|
dataIndex: 'abandon_count',
|
|
|
- width: 100,
|
|
|
+ width: 90,
|
|
|
align: 'right'
|
|
|
},
|
|
|
{
|
|
|
- title: '放弃转链(%)',
|
|
|
+ title: '放弃(%)',
|
|
|
dataIndex: 'abandon_percentage',
|
|
|
- width: 120,
|
|
|
+ width: 90,
|
|
|
+ align: 'right'
|
|
|
+ },
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '转链API调用',
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ title: '调用',
|
|
|
+ dataIndex: 'parse_total_count',
|
|
|
+ slotName: 'parse_total_count',
|
|
|
+ width: 90,
|
|
|
+ align: 'right'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '成功',
|
|
|
+ dataIndex: 'parse_success_count',
|
|
|
+ width: 90,
|
|
|
+ align: 'right'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '成功(%)',
|
|
|
+ dataIndex: 'parse_success_percentage',
|
|
|
+ width: 90,
|
|
|
+ align: 'right'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '放弃',
|
|
|
+ dataIndex: 'parse_abandon_count',
|
|
|
+ width: 90,
|
|
|
+ align: 'right'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '放弃(%)',
|
|
|
+ dataIndex: 'parse_abandon_percentage',
|
|
|
+ width: 90,
|
|
|
+ align: 'right'
|
|
|
+ },
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '优惠券API调用',
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ title: '调用',
|
|
|
+ dataIndex: 'coupon_total_count',
|
|
|
+ slotName: 'coupon_total_count',
|
|
|
+ width: 90,
|
|
|
+ align: 'right'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '成功',
|
|
|
+ dataIndex: 'coupon_success_count',
|
|
|
+ width: 90,
|
|
|
+ align: 'right'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '成功(%)',
|
|
|
+ dataIndex: 'coupon_success_percentage',
|
|
|
+ width: 90,
|
|
|
+ align: 'right'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '放弃',
|
|
|
+ dataIndex: 'coupon_abandon_count',
|
|
|
+ width: 90,
|
|
|
+ align: 'right'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '放弃(%)',
|
|
|
+ dataIndex: 'coupon_abandon_percentage',
|
|
|
+ width: 90,
|
|
|
+ align: 'right'
|
|
|
+ },
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '工具API调用',
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ title: '调用',
|
|
|
+ dataIndex: 'tool_total_count',
|
|
|
+ slotName: 'tool_total_count',
|
|
|
+ width: 90,
|
|
|
+ align: 'right'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '成功',
|
|
|
+ dataIndex: 'tool_success_count',
|
|
|
+ width: 90,
|
|
|
+ align: 'right'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '成功(%)',
|
|
|
+ dataIndex: 'tool_success_percentage',
|
|
|
+ width: 90,
|
|
|
+ align: 'right'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '放弃',
|
|
|
+ dataIndex: 'tool_abandon_count',
|
|
|
+ width: 90,
|
|
|
+ align: 'right'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '放弃(%)',
|
|
|
+ dataIndex: 'tool_abandon_percentage',
|
|
|
+ width: 90,
|
|
|
align: 'right'
|
|
|
},
|
|
|
]
|
|
|
},
|
|
|
-
|
|
|
{
|
|
|
title: '最后更新时间',
|
|
|
dataIndex: 'last_time',
|