123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- <template>
- <div ref="chartRef" :style="{ height, width }"></div>
- </template>
- <script lang="ts">
- import { defineComponent, PropType, ref, Ref, onMounted, watch } from 'vue';
- import { useECharts } from '/@/hooks/web/useECharts';
- export default defineComponent({
- props: {
- width: {
- type: String as PropType<string>,
- default: '100%',
- },
- height: {
- type: String as PropType<string>,
- default: '350px',
- },
- dataSource:{
- default:{
- x:[],
- pv:[],
- uv:[],
- enquiry: []
- }
- },
- },
- setup(props) {
- const chartRef = ref<HTMLDivElement | null>(null);
- const { setOptions, echarts } = useECharts(chartRef as Ref<HTMLDivElement>);
- const updateChart = () => {
- setOptions({
- tooltip: {
- trigger: 'axis',
- axisPointer: {
- type: 'line',
- label: {
- show: true,
- backgroundColor: '#333',
- },
- },
- },
- legend: {
- data: ['访客数(UV)', '浏览量(PV)', '询盘数(EN)'],
- textStyle: {
- color: '#ccc',
- },
- },
- xAxis: {
- data: props.dataSource.x,
- axisLine: {
- lineStyle: {
- color: '#ccc',
- },
- },
- },
- yAxis: {
- splitLine: { show: true },
- axisLine: {
- lineStyle: {
- color: '#ccc',
- },
- },
- },
- series: [
- {
- name: '访客数(UV)',
- type: 'line',
- smooth: false,
- symbol: 'circle',
- showAllSymbol: 'auto',
- symbolSize: 6,
- lineStyle: {
- color: '#53A2D3',
- },
- itemStyle: {
- color: '#53A2D3',
- },
- data: props.dataSource.pv,
- },
- {
- name: '询盘数(EN)',
- type: 'line',
- symbol: 'circle',
- z: -12,
- lineStyle: {
- color: '#399C5C',
- },
- itemStyle: {
- color: '#399C5C',
- },
- data: props.dataSource.enquiry,
- }
- ],
- });
- };
- watch(
- () => props.dataSource,
- () => {
- updateChart();
- },
- { deep: true }
- );
- onMounted(() => {
- updateChart();
- });
- return { chartRef };
- },
- });
- </script>
|