|
@ -80,9 +80,6 @@ |
|
|
|
|
|
|
|
|
<div class="flex" slot="reference"> |
|
|
<div class="flex" slot="reference"> |
|
|
{{ row.value_1 }} |
|
|
{{ row.value_1 }} |
|
|
<template v-if="Object.keys(growth_list).length > 0"> |
|
|
|
|
|
<GrowthText :value="growth_list[row.id] ? growth_list[row.id].value : false" prop="growth"/> |
|
|
|
|
|
</template> |
|
|
|
|
|
</div> |
|
|
</div> |
|
|
|
|
|
|
|
|
</el-popover> |
|
|
</el-popover> |
|
@ -115,7 +112,6 @@ |
|
|
|
|
|
|
|
|
<div class="flex" slot="reference"> |
|
|
<div class="flex" slot="reference"> |
|
|
{{ row.value_2 }} |
|
|
{{ row.value_2 }} |
|
|
<GrowthText :value="growth_list[row.id] ? growth_list[row.id].value : false" prop="growth"/> |
|
|
|
|
|
<HoverImage v-if="row.value_1>0 && show_detail_index == row.sort && lookMore" |
|
|
<HoverImage v-if="row.value_1>0 && show_detail_index == row.sort && lookMore" |
|
|
@click="handleClick2(row, $index, 'id')" |
|
|
@click="handleClick2(row, $index, 'id')" |
|
|
:normal="require('@/assets/super/list-detail.svg')" |
|
|
:normal="require('@/assets/super/list-detail.svg')" |
|
@ -185,7 +181,6 @@ |
|
|
|
|
|
|
|
|
import DateSelect from '@/components/super/DateSelect.vue'; |
|
|
import DateSelect from '@/components/super/DateSelect.vue'; |
|
|
import CustomDropdown from '@/components/CustomDropdown.vue'; |
|
|
import CustomDropdown from '@/components/CustomDropdown.vue'; |
|
|
import GrowthText from "@/components/super/GrowthText.vue"; |
|
|
|
|
|
import HoverImage from "@/components/super/HoverImage.vue"; |
|
|
import HoverImage from "@/components/super/HoverImage.vue"; |
|
|
|
|
|
|
|
|
export default { |
|
|
export default { |
|
@ -214,7 +209,6 @@ export default { |
|
|
}, |
|
|
}, |
|
|
components: { |
|
|
components: { |
|
|
HoverImage, |
|
|
HoverImage, |
|
|
GrowthText, |
|
|
|
|
|
DateSelect, |
|
|
DateSelect, |
|
|
CustomDropdown |
|
|
CustomDropdown |
|
|
}, |
|
|
}, |
|
@ -255,7 +249,6 @@ export default { |
|
|
tableData: [], |
|
|
tableData: [], |
|
|
total_value: 0, |
|
|
total_value: 0, |
|
|
tableData1: [], |
|
|
tableData1: [], |
|
|
growth_list: [], |
|
|
|
|
|
top_list: [], |
|
|
top_list: [], |
|
|
show_detail_index: 0, |
|
|
show_detail_index: 0, |
|
|
} |
|
|
} |
|
@ -450,7 +443,6 @@ export default { |
|
|
const that = this |
|
|
const that = this |
|
|
that.tableData = [] |
|
|
that.tableData = [] |
|
|
that.total_value = 0 |
|
|
that.total_value = 0 |
|
|
that.growth_list = [] |
|
|
|
|
|
this.$http('POST', '/supernew/ajax_get_agent_rank_list', { |
|
|
this.$http('POST', '/supernew/ajax_get_agent_rank_list', { |
|
|
ver_type: that.ver_type, |
|
|
ver_type: that.ver_type, |
|
|
check_type: that.check_type, |
|
|
check_type: that.check_type, |
|
@ -464,7 +456,6 @@ export default { |
|
|
this.$nextTick(() => { |
|
|
this.$nextTick(() => { |
|
|
that.tableData = response.data.list |
|
|
that.tableData = response.data.list |
|
|
that.total_value = response.data.total_value |
|
|
that.total_value = response.data.total_value |
|
|
that.growth_list = response.data.growth_list |
|
|
|
|
|
that.total = response.data.total |
|
|
that.total = response.data.total |
|
|
if (that.showfilterTitle) that.filterTitle = response.data.title |
|
|
if (that.showfilterTitle) that.filterTitle = response.data.title |
|
|
}) |
|
|
}) |
|
@ -477,7 +468,6 @@ export default { |
|
|
that.tableData = [] |
|
|
that.tableData = [] |
|
|
that.total_value = 0 |
|
|
that.total_value = 0 |
|
|
that.top_list = [] |
|
|
that.top_list = [] |
|
|
that.growth_list = [] |
|
|
|
|
|
this.$http('POST', '/supernew/ajax_get_ver_rank_list', { |
|
|
this.$http('POST', '/supernew/ajax_get_ver_rank_list', { |
|
|
aid: that.aid, |
|
|
aid: that.aid, |
|
|
check_type: that.check_type, |
|
|
check_type: that.check_type, |
|
@ -492,7 +482,6 @@ export default { |
|
|
that.tableData = response.data.list |
|
|
that.tableData = response.data.list |
|
|
that.total_value = response.data.total_value |
|
|
that.total_value = response.data.total_value |
|
|
that.top_list = response.data.top_list |
|
|
that.top_list = response.data.top_list |
|
|
that.growth_list = response.data.growth_list |
|
|
|
|
|
that.total = response.data.total |
|
|
that.total = response.data.total |
|
|
if (that.showfilterTitle) that.filterTitle = response.data.title |
|
|
if (that.showfilterTitle) that.filterTitle = response.data.title |
|
|
}) |
|
|
}) |
|
@ -505,7 +494,6 @@ export default { |
|
|
that.tableData = [] |
|
|
that.tableData = [] |
|
|
that.total_value = 0 |
|
|
that.total_value = 0 |
|
|
that.top_list = [] |
|
|
that.top_list = [] |
|
|
that.growth_list = [] |
|
|
|
|
|
this.$http('POST', '/supernew/ajax_get_type_rank_list', { |
|
|
this.$http('POST', '/supernew/ajax_get_type_rank_list', { |
|
|
aid: that.aid, |
|
|
aid: that.aid, |
|
|
ver_type: that.ver_type, |
|
|
ver_type: that.ver_type, |
|
@ -520,7 +508,6 @@ export default { |
|
|
that.tableData = response.data.list |
|
|
that.tableData = response.data.list |
|
|
that.total_value = response.data.total_value |
|
|
that.total_value = response.data.total_value |
|
|
that.top_list = response.data.top_list |
|
|
that.top_list = response.data.top_list |
|
|
that.growth_list = response.data.growth_list |
|
|
|
|
|
that.total = response.data.total |
|
|
that.total = response.data.total |
|
|
if (that.showfilterTitle) that.filterTitle = response.data.title |
|
|
if (that.showfilterTitle) that.filterTitle = response.data.title |
|
|
}) |
|
|
}) |
|
@ -531,7 +518,6 @@ export default { |
|
|
getRankingDetail(obj) { |
|
|
getRankingDetail(obj) { |
|
|
const that = this |
|
|
const that = this |
|
|
that.tableData1 = [] |
|
|
that.tableData1 = [] |
|
|
that.growth_list1 = [] |
|
|
|
|
|
this.$http('POST', '/supernew/ajax_get_rank_detail', { |
|
|
this.$http('POST', '/supernew/ajax_get_rank_detail', { |
|
|
date: that.text, |
|
|
date: that.text, |
|
|
rank_type: that.dataRank, |
|
|
rank_type: that.dataRank, |
|
@ -541,7 +527,6 @@ export default { |
|
|
}).then(response => { |
|
|
}).then(response => { |
|
|
this.$nextTick(() => { |
|
|
this.$nextTick(() => { |
|
|
that.tableData1 = response.data.list.slice(0, 5) |
|
|
that.tableData1 = response.data.list.slice(0, 5) |
|
|
that.growth_list1 = response.data.growth_list |
|
|
|
|
|
}) |
|
|
}) |
|
|
}).catch(error => { |
|
|
}).catch(error => { |
|
|
console.error(error, 'error') |
|
|
console.error(error, 'error') |
|
@ -550,7 +535,6 @@ export default { |
|
|
getRankingList(obj) { |
|
|
getRankingList(obj) { |
|
|
const that = this |
|
|
const that = this |
|
|
that.tableData1 = [] |
|
|
that.tableData1 = [] |
|
|
that.growth_list1 = [] |
|
|
|
|
|
this.$http('POST', '/supernew/ajax_get_agent_rank_list', { |
|
|
this.$http('POST', '/supernew/ajax_get_agent_rank_list', { |
|
|
date: that.text, |
|
|
date: that.text, |
|
|
rank_type: that.dataRank, |
|
|
rank_type: that.dataRank, |
|
|