123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154 |
- <template>
- <div ref="pieChart2" :style="{ height: height, width: width }"></div>
- </template>
- <script>
- import * as echarts from "echarts";
- import api from "../../../../api/Overview/index";
- import { ElMessage } from "element-plus";
- export default {
- props: {
- width: {
- type: String,
- default: "100%",
- },
- height: {
- type: String,
- default: "100%",
- },
- },
- data() {
- return {};
- },
- mounted() {},
- beforeUnmount() {
- window.removeEventListener("resize", this.chart);
- },
- watch: {
- /**
- * @监听vuex存储值变化 用于调用api
- */
- "$store.state.siteId": {
- immediate: true, // 首次加载的时候执行函数
- deep: true, // 深入观察,监听数组值,对象属性值的变化
- handler: function () {
- this.deviceTypeCount();
- },
- },
- },
- methods: {
- deviceTypeCount() {
- var _this = this;
- api
- .deviceTypeCount({
- site: _this.$store.state.siteId,
- })
- .then((requset) => {
- if (requset.status === "SUCCESS") {
- var data = requset.data;
- _this.initChart(
- data.epCount == null ? 0 : data.epCount,
- data.videoCount == null ? 0 : data.videoCount
- );
- } else {
- ElMessage.success({
- message: requset.msg,
- type: "success",
- });
- }
- });
- },
- //次数分布折线图
- initChart(epCount, videoCount) {
- var chart = echarts.init(this.$refs.pieChart2);
- var option;
- var pie = [
- {
- value: epCount,
- name: "电力",
- },
- {
- value: videoCount,
- name: "视频",
- },
- ];
- option = {
- grid: {},
- title: [
- {
- text: "{name|" + (epCount + videoCount) + "}\n{val|总数}",
- top: "center",
- left: "center",
- textStyle: {
- rich: {
- name: {
- fontSize: 30,
- fontWeight: "normal",
- color: "#FFFFFF",
- fontFamily: "impact",
- padding: [0, 0, 3, 0],
- },
- val: {
- fontSize: 14,
- fontWeight: "normal",
- color: "#FFFFFF",
- padding: [3, 0, 0, 0],
- },
- },
- },
- },
- ],
- tooltip: {
- // trigger: "item",
- trigger: "item",
- confine: true, //将此限制打开后tooltip将不再溢出
- formatter: function (params) {
- return (
- params.name +
- ":" +
- params.value +
- "<br>占比:" +
- params.percent.toFixed(2) +
- "%"
- );
- },
- },
- series: [
- {
- label: {
- normal: {
- show: true,
- textStyle: {
- color: "#fff",
- },
- formatter: " {b} ",
- },
- emphasis: {
- show: true,
- },
- },
- radius: ["43%", "65%"],
- type: "pie",
- data: pie,
- labelLine: {
- normal: {
- length: 3, //aa折线长度
- // length2: 1, //aa折线长度
- },
- },
- },
- ],
- color: ["#39FEFC", "#FC3535"],
- };
- chart.setOption(option, true);
- window.addEventListener("resize", () => {
- chart.resize();
- });
- this.chart = chart;
- },
- },
- };
- </script>
|