lsc 2 years ago
parent
commit
9be7909763
1 changed files with 4 additions and 3 deletions
  1. 4 3
      src/components/pages/components/report/coursePie.vue

+ 4 - 3
src/components/pages/components/report/coursePie.vue

@@ -1,6 +1,6 @@
 <template>
   <div v-loading="isloading">
-    <div style="width: 95%; height: calc(100% - 40px); margin: 20px auto;">
+    <div style="width: 95%; height: calc(100% - 40px); margin: 20px auto;"  ref="innder">
       <!-- <img src="../../assets/dataimage/1.png" style="width:90%" /> -->
       <!-- <div
         id="charts_canvas"
@@ -267,8 +267,9 @@ export default {
       return b.ratez - a.ratez;
     },
     setTableHeight() {
-      this.tableHeight =
-        window.innerHeight - this.$refs.table.offsetHeight - 600;
+      console.log(this.$refs.innder.offsetHeight);
+      this.tableHeight = this.$refs.innder.offsetHeight
+        // window.innerHeight - this.$refs.table.offsetHeight - 600;
       // 监听窗口大小变化
     },
   },