表格滚动条相关

表格横线滚动条当某项设置固定列 fixed: ‘left’

//less
:global{
  .ant-table-body {
    overflow: auto scroll !important;
  }
}
 

表格空状态滚动条异常

           :global {
                    .ant-table-body {
                        //表格滚动条问题
                        overflow: auto scroll !important;
                        // height: calc(100vh - 210px) !important;
                    }
                    .ant-table-placeholder {
                        // table为空时去除边距
                        & > td:nth-child(1) {
                            padding-left: 0 !important;
                        }
 
                        .ant-table-expanded-row-fixed {
                            margin: 0 !important;
                            padding: 0 !important;
                        }
                    }
                }