king
2024-06-11 2015e978c64c2517d273b9d76d4134a1f623d389
src/tabviews/custom/components/share/normalTable/index.jsx
@@ -1169,8 +1169,14 @@
    }
    let height = setting.height || false
    if (height && height <= 100) {
      height = height + 'vh'
    if (height) {
      if (height <= 100) {
        if (height < 0) {
          height = `calc(100vh - ${-height}px)`
        } else {
          height = height + 'vh'
        }
      }
    }
    let loading = this.props.loading
    if (setting.mask === 'hidden') {