chenrui  2 年之前
父节点
当前提交
6466351f0b
共有 2 个文件被更改,包括 30 次插入10 次删除
  1. 4 9
      src/views/securityCheck/components/graphicHome.vue
  2. 26 1
      src/views/securityCheck/views/agentHome.vue

+ 4 - 9
src/views/securityCheck/components/graphicHome.vue

@@ -22,16 +22,11 @@ export default {
   data() {
     return {};
   },
-  created() {
+  // created() {
+  //   this.init();
+  // },
+  methods() {
     this.init();
-    // setTimeout(() => {
-    //   this.init();
-    // }, 2000);
-  },
-  mounted() {
-    // setTimeout(() => {
-    //   this.init();
-    // }, 4000);
   },
   methods: {
     init() {

+ 26 - 1
src/views/securityCheck/views/agentHome.vue

@@ -17,7 +17,7 @@
             </div>
             <div class="chart_cont">
               <div class="chart_left">
-                <GraphicEchart :id="1" :texter="dataall" />
+                <GraphicEchart :texter="dataall" />
               </div>
               <div class="chart_right pt90">
                 <div class="child">
@@ -235,10 +235,12 @@
 <script>
 import GraphicEchart from "../components/graphicHome.vue";
 import SecurityCheckHeader from "../components/securityCheckHeader.vue";
+import { agent } from "@/api/statistics/statistics.js";
 export default {
   data() {
     return {
       dataall: {
+        id: 13,
         name: "总件数",
         cont: "500",
         data: [
@@ -280,10 +282,33 @@ export default {
       },
     };
   },
+  created() {
+    this.getData();
+  },
   methods: {
     change() {
       this.$router.push("./agentTable");
     },
+    async getData() {
+      try {
+        const result = await agent({});
+        let count = 0;
+        let counts = 0;
+        let arr = [];
+        //获取总件数:
+        result.data.forEach((item) => {
+          count += item.num;
+          let obj = { value: item.num, name: item.risk };
+          arr.push(obj);
+        });
+        this.dataall.cont = count;
+        this.dataall.data = arr;
+        this.dataall.color = [];
+        console.log(result.data);
+      } catch (error) {
+        console.log(error);
+      }
+    },
   },
   components: {
     GraphicEchart,