PC side - work study and bug record

1. Failure system

1. Use the form of elementui. When the table header is fixed, the scroll bar will be hidden, and there will be left blank grid styles.
insert image description here
Solution: (I found a lot of solutions that were not suitable, and finally tried this solution myself)

/deep/ .el-table__fixed-right {
      right: 0px !important;
    }

2. Demand optimization: Every time a request is sent, there will be loading in progress. When there are multiple requests on a page, multiple loadings will be displayed. Can it be optimized to display only one loading, and then end when all requests are completed? loading.
solution:

Guess you like

Origin blog.csdn.net/qq_45791799/article/details/126020378