See999 4 years ago
parent
commit
ebd01dfb33
1 changed files with 7 additions and 1 deletions
  1. 7 1
      src/xt_pages/medicalScheduling/schedulingStatistics.vue

+ 7 - 1
src/xt_pages/medicalScheduling/schedulingStatistics.vue View File

@@ -80,7 +80,7 @@
80 80
                 <line-chart :options="chart"></line-chart>
81 81
             </div>
82 82
             <div class="tableTitle">统计表</div>
83
-            <el-table :data="tableData" height="250" border style="width: 100">
83
+            <el-table class='statisticsTable' :data="tableData" height="250" border style="width: 100">
84 84
                 <el-table-column align="center" prop="date" label="医护姓名" width="100">
85 85
                     <template slot-scope="scope">
86 86
                         <span>{{scope.row.user_name}}</span>
@@ -752,4 +752,10 @@ export default {
752 752
 .pointTitle {
753 753
   font-size: 13px;
754 754
 }
755
+.statisticsTable{
756
+    ::-webkit-scrollbar{
757
+        height:15px !important;
758
+    }
759
+}
760
+
755 761
 </style>