101 lines
2.7 KiB
Vue
101 lines
2.7 KiB
Vue
<template>
|
|
<Card title="转化率" :loading="loading">
|
|
<div ref="chartRef" :style="{ width, height }"></div>
|
|
</Card>
|
|
</template>
|
|
<script lang="ts" setup>
|
|
import { Ref, ref, watch } from 'vue';
|
|
import { Card } from 'ant-design-vue';
|
|
import { useECharts } from '/@/hooks/web/useECharts';
|
|
|
|
const props = defineProps({
|
|
loading: Boolean,
|
|
width: {
|
|
type: String as PropType<string>,
|
|
default: '100%',
|
|
},
|
|
height: {
|
|
type: String as PropType<string>,
|
|
default: '300px',
|
|
},
|
|
});
|
|
|
|
const chartRef = ref<HTMLDivElement | null>(null);
|
|
const { setOptions } = useECharts(chartRef as Ref<HTMLDivElement>);
|
|
watch(
|
|
() => props.loading,
|
|
() => {
|
|
if (props.loading) {
|
|
return;
|
|
}
|
|
setOptions({
|
|
legend: {
|
|
bottom: 0,
|
|
data: ['访问', '购买'],
|
|
},
|
|
tooltip: {},
|
|
radar: {
|
|
radius: '60%',
|
|
splitNumber: 8,
|
|
indicator: [
|
|
{
|
|
text: '电脑',
|
|
max: 100,
|
|
},
|
|
{
|
|
text: '充电器',
|
|
max: 100,
|
|
},
|
|
{
|
|
text: '耳机',
|
|
max: 100,
|
|
},
|
|
{
|
|
text: '手机',
|
|
max: 100,
|
|
},
|
|
{
|
|
text: 'Ipad',
|
|
max: 100,
|
|
},
|
|
{
|
|
text: '耳机',
|
|
max: 100,
|
|
},
|
|
],
|
|
},
|
|
series: [
|
|
{
|
|
type: 'radar',
|
|
symbolSize: 0,
|
|
areaStyle: {
|
|
shadowBlur: 0,
|
|
shadowColor: 'rgba(0,0,0,.2)',
|
|
shadowOffsetX: 0,
|
|
shadowOffsetY: 10,
|
|
opacity: 1,
|
|
},
|
|
data: [
|
|
{
|
|
value: [90, 50, 86, 40, 50, 20],
|
|
name: '访问',
|
|
itemStyle: {
|
|
color: '#b6a2de',
|
|
},
|
|
},
|
|
{
|
|
value: [70, 75, 70, 76, 20, 85],
|
|
name: '购买',
|
|
itemStyle: {
|
|
color: '#5ab1ef',
|
|
},
|
|
},
|
|
],
|
|
},
|
|
],
|
|
});
|
|
},
|
|
{ immediate: true }
|
|
);
|
|
</script>
|