lsc 2 rokov pred
rodič
commit
0634ab8d28

+ 0 - 1
src/components/pages/dataBoard/index.vue

@@ -56,7 +56,6 @@ export default {
   width: 100%;
   min-width: 1200px;
   min-height: 750px;
-  overflow: hidden;
 }
 
 .db_header {

+ 1 - 1
src/components/pages/dataBoard/school/index.vue

@@ -230,7 +230,7 @@
             </div>
           </div>
           <cateRank
-            style="height: calc(100% - 216px); overflow: auto"
+            style="height: calc(100% - 200px); overflow: auto"
           ></cateRank>
         </div>
       </div>

+ 6 - 5
src/components/pages/dataBoard/student/stuAct/index.vue

@@ -1,22 +1,22 @@
 <template>
   <div class="data_body">
-    <div style="width: 100%; height: 100%">
+    <div style="width: 100%; height: 100%;">
       <el-table
         :data="tableData"
-        style="width: 100%; height: 100%; overflow: auto"
+        style="width: 100%;"
         :header-cell-style="{ background: '#E0EAFB' }"
         :row-class-name="tableRowClassName"
       >
-        <el-table-column prop="rank" label="排行" min-width="100" align="center">
+        <el-table-column prop="rank" label="排行" min-width="50" align="center">
         </el-table-column>
         <el-table-column
           prop="name"
           label="类别名称"
-          min-width="170"
+          min-width="80"
           align="center"
         >
         </el-table-column>
-        <el-table-column prop="sum" label="授课次数" min-width="170" align="center">
+        <el-table-column prop="sum" label="授课次数" min-width="80" align="center">
         </el-table-column>
       </el-table>
     </div>
@@ -66,5 +66,6 @@ export default {
   padding: 0;
   width: 95%;
   background: #fff;
+  overflow: auto;
 }
 </style>

+ 3 - 2
src/components/pages/dataBoard/teacher/chartList/funPlot.vue

@@ -16,6 +16,7 @@ export default {
     return {
       chartObj: null,
       option: {
+       
         tooltip: {
           trigger: "item",
           formatter: "{a} <br/>{b} : {c}%",
@@ -29,8 +30,8 @@ export default {
             type: "funnel",
             left: "10%",
             top: 60,
-            bottom: 60,
-            width: "80%",
+            bottom: 20,
+            width: "95%",
             min: 0,
             max: 100,
             minSize: "0%",

+ 6 - 5
src/components/pages/dataBoard/teacher/chartList/teaAct.vue

@@ -1,22 +1,22 @@
 <template>
   <div class="data_body">
-    <div style="width: 100%; height: 100%">
+    <div style="width: 100%; height: 100%; ">
       <el-table
         :data="tableData"
-        style="width: 100%; height: 100%; overflow: auto"
+        style="width: 100%; "
         :header-cell-style="{ background: '#E0EAFB' }"
         :row-class-name="tableRowClassName"
       >
-        <el-table-column prop="rank" label="排行" min-width="100" align="center">
+        <el-table-column prop="rank" label="排行" min-width="50" align="center">
         </el-table-column>
         <el-table-column
           prop="name"
           label="类别名称"
-          min-width="170"
+          min-width="80"
           align="center"
         >
         </el-table-column>
-        <el-table-column prop="sum" label="授课次数" min-width="170" align="center">
+        <el-table-column prop="sum" label="授课次数" min-width="80" align="center">
         </el-table-column>
       </el-table>
     </div>
@@ -66,5 +66,6 @@ export default {
   padding: 0;
   width: 95%;
   background: #fff;
+  overflow: auto;
 }
 </style>

+ 1 - 0
src/components/pages/dataBoard/teacher/index.vue

@@ -229,6 +229,7 @@ export default {
   display: flex;
   padding: 20px;
   box-sizing: border-box;
+  overflow: hidden;
 }
 
 .left {