ly 2 ay önce
ebeveyn
işleme
83c296cf84

+ 1 - 0
ui/src/views/sems/thickness/home/dashboard/botPie.vue

@@ -173,6 +173,7 @@ export default {
           {
             type: "pie",
             radius: "55%",
+            roseType: "radius",
             center: ["35%", "50%"],
             label: {
               padding: [0, -75],

+ 4 - 2
ui/src/views/sems/thickness/home/dashboard/topLine.vue

@@ -121,8 +121,9 @@ export default {
       this.plantOptions = response.data;
       const allValues = this.plantOptions.map(item => item.name);
       this.form.plant = [...allValues];
+      this.getCuiData()
     });
-    this.getCuiData()
+
   },
   methods: {
     handleSelectChange(val) {
@@ -138,7 +139,7 @@ export default {
           this.form.plant = [...allValues];
         }
       }
-      this.$emit('call-update', this.form.plant);
+      // this.$emit('call-update', this.form.plant);
       this.getCuiData()
     },
     getCuiData(){
@@ -150,6 +151,7 @@ export default {
 
 
       });
+      this.$emit('call-update', this.form.plant);
     }
 
   }