cxmo 1 year ago
parent
commit
1207225058
1 changed files with 8 additions and 2 deletions
  1. 8 2
      src/views/edbHistoryPage.vue

+ 8 - 2
src/views/edbHistoryPage.vue

@@ -57,8 +57,10 @@ export default {
 
 <style scoped lang="scss">
 .edb-history-page-wrap{
-    min-height: calc(100vh - 120px);
-    overflow-y: auto;
+    display: flex;
+    flex-direction: column;
+    height: calc(100vh - 120px);
+    overflow:hidden ;
     background-color: #fff;
     border-radius: 4px;
     border:1px solid #C8CDD9;
@@ -67,6 +69,10 @@ export default {
     .edb-source-wrap{
         text-align: center;
     }
+    .edb-source-wrap{
+        flex: 1;
+        overflow: auto;
+    }
 }
 </style>
 <style lang="scss">