src/views/mdc/base/modules/efficiencyShiftReport/EfficiencyShiftList.vue
@@ -594,9 +594,9 @@
       * 分辨率改变时同时改变表格高度已保证首页一进入不拖动垂直滚动条时即可拖动表格水平滚动条
       */
      handleWindowResize() {
        const tableContainer = document.getElementById('EfficiencyShift')
        const clientHeight = document.body.clientHeight
        const containerTopToClientTopHeight = tableContainer.getBoundingClientRect().top
        const tableContainer = document.getElementById('EfficiencyShift') // 表格容器
        const clientHeight = document.documentElement.clientHeight || document.body.clientHeight // 浏览器可视区域高度
        const containerTopToClientTopHeight = tableContainer.getBoundingClientRect().top // 表格容器顶部到浏览器可视区域顶部的间距
        tableContainer.style.height = (clientHeight - containerTopToClientTopHeight - 32) + 'px'
      }
    }