소스 검색

fix: table height

double.huang 5 년 전
부모
커밋
348c75a929
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/components/Sheet/index.vue

+ 1 - 1
src/components/Sheet/index.vue

@@ -180,7 +180,7 @@ export default {
   computed: {
     tableMaxHeight() {
       if (this.$store === undefined || this.$store.getters.pageTableHeaderHeight === 0) { return null }
-      const height = 220 + this.$store.getters.pageTableHeaderHeight
+      const height = 210 + this.$store.getters.pageTableHeaderHeight
       return 'calc(100vh - ' + height + 'px)'
     }
   },