element表格去掉表頭的實(shí)現(xiàn)方法
文檔提示用屬性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)文章
解決vue-element-admin安裝依賴npm install報(bào)錯(cuò)問(wèn)題
這篇文章主要介紹了解決vue-element-admin安裝依賴npm install報(bào)錯(cuò)問(wèn)題,具有很好的參考價(jià)值,希望對(duì)大家有所幫助,如有錯(cuò)誤或未考慮完全的地方,望不吝賜教2024-06-06Vue實(shí)現(xiàn)一個(gè)無(wú)限加載列表功能
這篇文章主要介紹了Vue實(shí)現(xiàn)一個(gè)無(wú)限加載列表功能,需要的朋友可以參考下2018-11-11Vue 兩個(gè)字段聯(lián)合校驗(yàn)之修改密碼功能的實(shí)現(xiàn)
本文以校驗(yàn)兩次密碼的一致性應(yīng)用,給出兩個(gè)可變屬性值的字段之間的聯(lián)合校驗(yàn)的典型解決方案,通過(guò)實(shí)例代碼給大家介紹Vue 兩個(gè)字段聯(lián)合校驗(yàn)之修改密碼功能的實(shí)現(xiàn),需要的朋友一起看看吧2021-07-07一文帶你簡(jiǎn)單理解Vue的data為何只能是函數(shù)
如果data是一個(gè)函數(shù)的話,這樣每復(fù)用一次組件,就會(huì)返回一份新的data,下面這篇文章主要給大家介紹了關(guān)于簡(jiǎn)單理解Vue的data為啥只能是函數(shù)的相關(guān)資料,需要的朋友可以參考下2022-10-10vue實(shí)現(xiàn)前端按鈕組件權(quán)限管理
這篇文章主要為大家介紹了vue實(shí)現(xiàn)前端按鈕組件權(quán)限管理,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪2022-09-09vue路由跳轉(zhuǎn)傳遞參數(shù)的方式總結(jié)
在本篇文章和里小編給各位總結(jié)了關(guān)于vue路由跳轉(zhuǎn)傳遞參數(shù)的三種方式以及相關(guān)代碼,需要的朋友們可以學(xué)習(xí)下。2020-05-05vue中swiper開(kāi)啟loop后,點(diǎn)擊事件不響應(yīng)的解決方案
這篇文章主要介紹了vue中swiper開(kāi)啟loop后,點(diǎn)擊事件不響應(yīng)的解決方案,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教2022-09-09詳解lottie動(dòng)畫在vue中的應(yīng)用
Lottie 是一個(gè)適用于 Android、iOS、Web 和 Windows 的庫(kù),它使用 Bodymovin 解析導(dǎo)出為 JSON 的 Adobe After Effects 動(dòng)畫,下面我們就來(lái)看看它在vue中的是如何應(yīng)用的吧2023-12-12