Developer 2024 🎇限时优惠进行中,现在购买立即享受

现在购买

echarts首页配置

avatarnightz
4月4日945次阅读

Pro版本的默认首页还是挺好看的。。有些时候我们就希望可以在原有的首页上扩充新的功能。。如果扩展的是普通数据是没问题的。但是如果直接自定义echarts图表。会出现图表不可访问的情况。。。。。


image.png


home_page.html即为我们的扩展页面


image.png

<home-pie></home-pie> home_page页面自定义组件

Vue.component('home-pie', {
    data() {
        return {
            option: {
                tooltip: {
                    trigger: 'item',
                    formatter: '{a} <br/>{b}: {c} ({d}%)'
                },
                color: ['#F26F6F', '#5C9AEE'],
                legend: {
                    orient: 'horizontal',
                    left: 70,
                    top: 230,

                },
                series: [
                    {
                        name: '摄像头状态',
                        type: 'pie',
                        radius: ["20%", "45%"],
                        center: ["50%", "40%"],
                        avoidLabelOverlap: false,
                        label: {
                            show: false,
                            position: 'center',
                            emphasis: {
                                show: true,
                                textStyle: {
                                    fontSize: "14",
                                    fontWeight: "bold",
                                },
                            }
                        },
                        emphasis: {
                            label: {
                                show: true,
                                fontSize: '14',
                                fontWeight: 'bold'
                            }
                        },
                        labelLine: {
                            normal: {
                                show: false,
                                length: 5,
                            },
                        },
                        itemStyle: {
                            normal: {
                                shadowBlur: 0,
                                shadowColor: 'rgba(0, 0, 0, 0.5)'
                            }
                        },
                        data: [
                            {value: 2, name: '在线'},
                            {value: 1, name: '离线'}
                        ]
                    }
                ]
            },
            isActive: true,
        }
    },
    created() {
        this.get_device_status();
    },
    mounted() {
        let self = this;
        // 浏览器失去焦点停止查询、节省开销
        window.addEventListener('focus', e => {
            self.isActive = true;
        });
        window.addEventListener('blur', e => {
            self.isActive = false;
        });
        setInterval(() => {
            if (!self.isActive) {
                return;
            }
            if (!app || app.tabModel !== '0') {
                return;
            }
            self.get_device_status();
        }, 60000)
    },
    methods: {
        get_device_status: function () {
            let self = this;
            ···
        }
    },
    template:
        `<div style="display: flex">
    <echarts :option="option" style="width: 100%;height: 350px"></echarts>
</div>`
})

https://www.cnblogs.com/52-qq/p/16145547.html 我这里写了一个折线图的组件

发布评论
登录后发表内容
7个评论