1
huangxiaoqiang
2025-04-16 60550aa3ee7029fe21863714d61f6a96cb924b24
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<template>
  <div>
    <Chart :cdata="cdata" />
  </div>
</template>
 
<script>
import Chart from "./chart.vue";
// import{LEDloctionList} from "@/api/http.js";
export default {
  data() {
    return {
      cdata: {
        xData: ["空货位", "已使用", "禁用"],
        seriesData: [
          { value: 30, name: "空货位" },
          { value: 5, name: "已使用" },
          { value: 15, name: "禁用" },
        ],
      },
    };
  },
  components: {
    Chart,
  },
  mounted() {
    // setInterval(() => {
    //         this.LEDloctionList();
    //       }, 3000);
 
  },
  methods: {
  }
};
</script>
 
<style lang="scss" scoped>
</style>