See999 4 年之前
父節點
當前提交
ebd01dfb33
共有 1 個文件被更改,包括 7 次插入1 次删除
  1. 7 1
      src/xt_pages/medicalScheduling/schedulingStatistics.vue

+ 7 - 1
src/xt_pages/medicalScheduling/schedulingStatistics.vue 查看文件

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