123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400 |
- <template>
- <div v-loading="loading">
- <el-row :gutter="5">
- <el-col :span="24">
- <div style="margin-left: 45%">
- <span style="background: #3a83f7; width: 18px; height: 10px; margin-top: 8px; display: inline-block; border-radius: 3px;"></span>
- <TextSelector v-model="barModelValue1" :options="computedBarOptions1" @change="changeBarOne" style="margin-top: 5px; margin-left: 8px;"/>
- <span
- style="background: #f19a37; width: 18px; height: 10px; margin-top: 8px; margin-left: 20px; display: inline-block; border-radius: 3px;"></span>
- <TextSelector v-model="barModelValue2" :options="computedBarOptions2" @change="changeBarTwo" style="margin-top: 5px; margin-left: 8px;"/>
- </div>
- <div ref="bar" style="height: 400px;"></div>
- </el-col>
- </el-row>
- </div>
- </template>
- <script setup>
- import { onMounted, ref, inject, computed, watch } from "vue"
- import * as echarts from "echarts"
- import TextSelector from '/@/components/TextSelector/index.vue'
- import { getAdStructureData } from "/@/views/adManage/sp/placement/api"
- import { createDisabledOptions } from '../../../utils/dropdowndisable'
- import { barOptionsMap } from "/@/views/adManage/utils/enum"
- import { useShopInfo } from '/@/stores/shopInfo'
- import { usePublicData } from "/@/stores/publicData"
- import { storeToRefs } from 'pinia'
- const shopInfo = useShopInfo()
- const publicData = usePublicData()
- const { dateRange } = storeToRefs(publicData)
- const { profile } = storeToRefs(shopInfo)
- let barChart = ref()
- const pie = ref()
- const bar = ref()
- const loading = ref(true)
- // 下拉框相关
- const barOptions1 = [
- {
- value: 'ACOS',
- label: 'ACOS',
- },
- {
- value: 'ROAS',
- label: 'ROAS',
- },
- {
- value: 'Spend',
- label: '花费',
- units: '$',
- },
- {
- value: 'TotalSales',
- label: '销售额',
- },
- {
- value: 'TotalPurchases',
- label: '订单数',
- },
- {
- value: 'TotalUnitOrdered',
- label: '销量',
- },
- {
- value: 'CPC',
- label: '点击成本'
- },
- {
- value: 'CPA',
- label: '订单成本'
- },
- {
- value: 'Impression',
- label: '曝光量',
- },
- {
- value: 'Click',
- label: '点击量',
- },
- {
- value: 'qwe',
- label: '点击率'
- },
- {
- value: '转化率',
- label: '转化率'
- },
- {
- value: 'TotalSalesSameSKU',
- label: '推广商品销售额'
- },
- {
- value: 'TotalSalesOtherSKU',
- label: '其他商品销售额'
- },
- {
- value: 'TotalPurchasesSameSKU',
- label: '推广商品订单数'
- },
- {
- value: 'TotalPurchasesOtherSKU',
- label: '其他商品订单数'
- },
- {
- value: 'TotalUnitOrderedSameSKU',
- label: '推广商品销量'
- },
- {
- value: 'TotalUnitOrderedOtherSKU',
- label: '其他商品销量'
- },
- {
- value: 'TopOfSearchImpressionShare',
- label: '搜索结果顶部展示份额'
- },
- ]
- let barModelValue1 = ref(barOptions1[0].value)
- const barOptions2 = [
- {
- value: 'ACOS',
- label: 'ACOS',
- },
- {
- value: 'ROAS',
- label: 'ROAS',
- },
- {
- value: 'Spend',
- label: '花费',
- units: '$',
- },
- {
- value: 'TotalSales',
- label: '销售额',
- },
- {
- value: 'TotalPurchases',
- label: '订单数',
- },
- {
- value: 'TotalUnitOrdered',
- label: '销量',
- },
- {
- value: 'CPC',
- label: '点击成本'
- },
- {
- value: 'CPA',
- label: '订单成本'
- },
- {
- value: 'Impression',
- label: '曝光量',
- },
- {
- value: 'Click',
- label: '点击量',
- },
- {
- value: 'qwe',
- label: '点击率'
- },
- {
- value: '转化率',
- label: '转化率'
- },
- {
- value: 'TotalSalesSameSKU',
- label: '推广商品销售额'
- },
- {
- value: 'TotalSalesOtherSKU',
- label: '其他商品销售额'
- },
- {
- value: 'TotalPurchasesSameSKU',
- label: '推广商品订单数'
- },
- {
- value: 'TotalPurchasesOtherSKU',
- label: '其他商品订单数'
- },
- {
- value: 'TotalUnitOrderedSameSKU',
- label: '推广商品销量'
- },
- {
- value: 'TotalUnitOrderedOtherSKU',
- label: '其他商品销量'
- },
- {
- value: 'TopOfSearchImpressionShare',
- label: '搜索结果顶部展示份额'
- },
- ]
- let barModelValue2 = ref(barOptions2[2].value)
- onMounted(async () => {
- barChart = echarts.init(bar.value)
- window.addEventListener('resize', resizeChart) // 监听窗口大小变化,调整图表大小
- setTimeout(() => {
- resizeChart()
- }, 0)
- await initBarData()
- initChart()
- })
- // 获取总数据
- let allData = null
- async function setAdStructureData() {
- allData = await getAdStructureData({ startDate: dateRange.value[0], endDate: dateRange.value[1], profileId: shopInfo.profile.profile_id })
- return allData.data
- }
- // 柱状图总数据
- let barData = null
- let responseData = null
- // 柱状图初始数据
- let ACOSList
- let SpendList
- let xAxisList
- let xAxisMapList
- async function initBarData() {
- responseData = await setAdStructureData()
- barData = responseData
- // 柱状图初始化数据
- ACOSList = barData.map(item => item.ACOS)
- SpendList = barData.map(item => item.Spend)
- // 将x轴映射为中文
- xAxisList = barData.map(item => item.placement)
- const classificationMap = {
- 'BROAD': '关键词-广泛',
- 'category': '品类',
- 'EXACT': '关键词-精准',
- 'asin': '商品',
- 'PHRASE': '关键词-词组',
- 'close-match': '紧密匹配',
- 'loose-match': '广泛匹配',
- 'substitutes': '同类商品',
- 'complements': '关联商品',
- 'top': '搜索结果顶部(首页)',
- 'rest_of_search': '搜索结果的其余位置',
- 'product_page': '商品页面'
- }
- xAxisMapList = xAxisList.map(item => classificationMap[item])
- loading.value = false
- }
- // 重置图像
- let flag = ref()
- let option
- let option2
- // 点击下拉框后重新渲染柱状图
- function changeBarOne(newValue) {
- barModelValue1.value = newValue
- updateBarChart()
- }
- function changeBarTwo(newValue) {
- barModelValue2.value = newValue
- updateBarChart()
- }
- function updateBarChart() {
- const barValues1 = barData.map(item => item[barModelValue1.value])
- const barValues2 = barData.map(item => item[barModelValue2.value])
- option.series[0].data = barValues1
- option.series[1].data = barValues2
- barChart.setOption(option)
- }
- // 监听时间变化重新渲染表格
- watch(dateRange, async () => {
- if (dateRange.value) {
- loading.value = true
- const resp = await setAdStructureData()
- updateBarChartData(resp)
- loading.value = false
- }
- })
- // 根据新数据和当前下拉框选择更新 柱状图数据
- function updateBarChartData(resp) {
- const barValues1 = resp.map(item => item[barModelValue1.value])
- const barValues2 = resp.map(item => item[barModelValue2.value])
- option.series[0].data = barValues1
- option.series[1].data = barValues2
- barChart.setOption(option)
- }
- const computedBarOptions1 = computed(() => createDisabledOptions(barOptions1, barModelValue2.value, barModelValue1.value))
- const computedBarOptions2 = computed(() => createDisabledOptions(barOptions2, barModelValue1.value, barModelValue2.value))
- // 初始化图表
- function initChart() {
- // 柱状图配置
- option = {
- tooltip: {
- trigger: 'axis',
- axisPointer: {
- type: 'shadow',
- label: {
- backgroundColor: '#6a7985'
- }
- }
- },
- // legend: {data: ['数据1', '数据2'],},
- toolbox: {
- feature: {
- saveAsImage: { yAxisIndex: 'none' }
- }
- },
- grid: { top: 50, right: 60, bottom: 50, left: 60 },
- xAxis: [
- {
- type: 'category',
- boundaryGap: true,
- data: xAxisMapList,
- },
- ],
- yAxis: [
- {
- type: 'value',
- axisLine: {
- show: true,
- lineStyle: {
- color: '#3a83f7' // 第一个 Y 轴的颜色
- }
- }
- },
- {
- type: 'value',
- splitLine: {
- show: false
- },
- axisLine: {
- show: true,
- lineStyle: {
- color: '#f19a37' // 第一个 Y 轴的颜色
- }
- }
- }
- ],
- series: [
- {
- name: barOptionsMap[barModelValue1.value],
- type: 'bar',
- barWidth: '3%',
- data: ACOSList,
- yAxisIndex: 0,
- itemStyle: {
- color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
- { offset: 0, color: '#3a83f7' },
- { offset: 1, color: 'rgb(111, 209, 206)' },
- ]),
- // 柱状图圆角
- borderRadius: [6, 6, 6, 6],
- },
- },
- {
- name: barOptionsMap[barModelValue2.value],
- type: 'bar',
- barWidth: '3%',
- data: SpendList,
- yAxisIndex: 1,
- itemStyle: {
- color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
- { offset: 0, color: '#f19a37' },
- { offset: 1, color: 'rgb(234,207,135)' },
- ]),
- // 柱状图圆角
- borderRadius: [6, 6, 6, 6],
- },
- },
- ],
- }
- barChart.setOption(option)
- resizeChart()
- }
- function resizeChart() {
- barChart.resize()
- }
- defineExpose({ resizeChart })
- </script>
- <style scoped>
- </style>
|