The solution that the scroll bar cannot be dragged after the iview table is fixed

In business requirements, the first three columns should be frozen. After freezing, the scroll bar below cannot be dragged.
The following is the solution. It is ok to set these two properties in app.vue

.ivu-table-fixed{
    
    
    margin-bottom: 10px!important;
    height: auto!important;
}

insert image description here

Guess you like

Origin blog.csdn.net/weixin_42821697/article/details/123906963