欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

element表格去掉表頭的實(shí)現(xiàn)方法

 更新時(shí)間:2021年10月01日 08:58:47   作者:https://blog.csdn.net/qq_34169240/article/details/109327797  
本文主要介紹了element表格去掉表頭的實(shí)現(xiàn)方法,文中通過(guò)示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下

文檔提示用屬性show-header

 <el-table
            :data="tableData1"
            :span-method="arraySpanMethod"
            border
            :show-header="status"
              <el-table-column
              prop="lable"
              label=""
              width="180">
            </el-table-column>
           /el-table >

!!!重點(diǎn)就是要:show-header動(dòng)態(tài)控制

Element-ui table去掉所有邊框

el-table 加 class="customer-no-border-table"

/*去掉表格單元格邊框*/
   .customer-no-border-table th{
     border:none;
   }
.customer-no-border-table td,.customer-no-border-table th.is-leaf {
  border:none;
}
 /*表格最外邊框*/
.customer-no-border-table .el-table--border, .el-table--group{
     border: none;
   }
  /*頭部邊框*/
   .customer-no-border-table thead tr th.is-leaf{
     border: 0px solid #EBEEF5;
     border-right: none;
   }
.customer-no-border-table thead tr th:nth-last-of-type(2){
  border-right: 0px solid #EBEEF5;
}
 /*表格最外層邊框-底部邊框*/
.customer-no-border-table .el-table--border::after,.customer-no-border-table .el-table--group::after{
     width: 0;
   }
.customer-no-border-table::before{
  width: 0;
}
.customer-no-border-table .el-table__fixed-right::before,.el-table__fixed::before{
  width: 0;
}
.customer-no-border-table .el-table__header tr th{
  background: #fff;
  color: #333333 ;
  padding: 3px ;
  fontWeight: 550 ;
  height: 36px ;
  border: 0px;
  font-size: 15px;
}

到此這篇關(guān)于element表格去掉表頭的實(shí)現(xiàn)方法的文章就介紹到這了,更多相關(guān)element表格去掉表頭內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!

相關(guān)文章

最新評(píng)論