zengyicheng 1 year ago
parent
commit
32266f871b

+ 14 - 14
src/components/pages/dataBoardNew/course/chartList/courseTime.vue

@@ -31,9 +31,9 @@ export default {
         series: [
           {
             type: "funnel",
-            left: "10%",
-            top: 60,
-            bottom: 20,
+            left: "5%",
+            top: 10,
+            bottom: 0,
             width: "95%",
             min: 0,
             max: 100,
@@ -83,16 +83,16 @@ export default {
         this.chartObj.setOption(this.option);
       });
     },
-    setArray(array){
-        let _array = array;
+    setArray(array) {
+      let _array = array;
 
-        if (!this.chartObj) {
-          this.setChart(_array);
-        } else {
-          this.option.series[0].data = _array;
-          this.chartObj.setOption(this.option);
-        }
-        this.$forceUpdate();
+      if (!this.chartObj) {
+        this.setChart(_array);
+      } else {
+        this.option.series[0].data = _array;
+        this.chartObj.setOption(this.option);
+      }
+      this.$forceUpdate();
     },
   },
   watch: {
@@ -100,12 +100,12 @@ export default {
       immediate: true,
       deep: true,
       handler(newValue, oldValue) {
-        this.setArray(newValue)
+        this.setArray(newValue);
       },
     },
   },
   mounted() {
-    this.setArray(this.pusaDep)
+    this.setArray(this.pusaDep);
     var _this = this;
     window.addEventListener("resize", () => {
       if (_this.chartObj) {

+ 3 - 3
src/components/pages/dataBoardNew/teacher/chartList/teaAct.vue

@@ -31,9 +31,9 @@ export default {
         series: [
           {
             type: "funnel",
-            left: "10%",
-            top: 60,
-            bottom: 20,
+            left: "5%",
+            top: 10,
+            bottom: 0,
             width: "95%",
             min: 0,
             max: 100,

+ 3 - 3
src/components/pages/dataBoardNew/teacher/chartList/teaActSecond.vue

@@ -31,9 +31,9 @@ export default {
         series: [
           {
             type: "funnel",
-            left: "10%",
-            top: 60,
-            bottom: 20,
+            left: "5%",
+            top: 10,
+            bottom: 0,
             width: "95%",
             min: 0,
             max: 100,

+ 1 - 1
src/components/pages/dataBoardNew/teacher/index.vue

@@ -200,7 +200,7 @@
           </div>
         </div>
         <div class="dataBox">
-          <div class="allBox" style="height: calc(100% - 30px)">
+          <div class="allBox">
             <div class="allBox_left">
               <TeaAct v-if="bType == 0" :pusaDep="pusaDep"></TeaAct>
               <TeaActSecond v-if="bType == 1" :pusaDep="pusaDep1"></TeaActSecond>