vue+element-ui動態(tài)生成多級表頭的方法
更新時間:2018年08月28日 15:20:55 作者:北冥鯤飛后
今天小編就為大家分享一篇vue+element-ui動態(tài)生成多級表頭的方法,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧
vue+element
html配置:
<div id="table">{{tableData}} <el-table :data="tabledata01" :span-method="tableSpanMethod" max-height="420"> <el-table-column v-for='item in tableConfig' :label="item.label" :prop='item.prop' :width='item.width' :key="item.id"> <el-table-column v-if='item.children||item.children.length>0' v-for="item1 in item.children" :label="item1.label" :prop='item1.prop' :width='item1.width' :key="item1.id"> <el-table-column v-if='item1.children||item1.children.length>0' v-for="item2 in item1.children" :label="item2.label" :prop='item2.prop' :width='item2.width' :key="item2.id"> </el-table-column> </el-table-column> </el-table-column> </el-table> </div>
data:
tableConfig:[ {id:100,label:'一級表頭',prop:'',width:'',children:[ {id:110,label:'二級表頭1',prop:'districtName',width:''}, {id:120,label:'二級表頭2',prop:'timeDimension',width:''} ]}, {id:200,label:'一級表頭',prop:'',width:'',children:[ {id:210,label:'二級表頭',prop:'',width:'',children:[ {id:211,label:'三級表頭',prop:'residentPopNum',width:'110'}, {id:212,label:'三級表頭',prop:'residentPopDst',width:'110'} ]} ]}, {id:300,label:'一級表頭',prop:'',width:'',children:[ {id:310,label:'二級表頭',prop:'',width:'',children:[ {id:311,label:'三級表頭',prop:'liveLandArea',width:'110'}, {id:312,label:'三級表頭',prop:'liveLandDst',width:'110'} ], }, {id:320,label:'二級表頭',prop:'',width:'',children:[ {id:321,label:'三級表頭(km²)',prop:'employmentLandArea',width:'110'}, {id:322,label:'三級表頭',prop:'employmentLandDst',width:'110'} ], } ]}, {id:400,label:'一級表頭',prop:'',width:'',children:[ {id:410,label:'二級表頭',prop:'',width:'',children:[ {id:411,label:'三級表頭(個)',prop:'regionTrafficHubNum',width:'110'}, {id:412,label:'三級表頭(人次/km²)',prop:'regionTrafficHubFlow',width:'140'} ], }, {id:420,label:'二級表頭',prop:'',width:'',children:[ {id:421,label:'三級表頭(個)',prop:'highSpeedNum',width:'110'}, {id:422,label:'三級表頭(個/km²)',prop:'highSpeedDst',width:'140'} ], },{id:430,label:'二級表頭',prop:'',width:'',children:[ {id:431,label:'三級表頭(個)',prop:'trackTrafficSpotNum',width:'140'}, {id:432,label:'三級表頭(個/km²)',prop:'trackTrafficSpotDst',width:'140'} ], }, {id:440,label:'二級表頭',prop:'',width:'',children:[ {id:441,label:'三級表頭(km)',prop:'trackTrafficNetNum',width:'110'}, {id:442,label:'三級表頭(km/km²)',prop:'trackTrafficNetDst',width:'140'} ], }, {id:450,label:'二級表頭',prop:'',width:'',children:[ {id:451,label:'三級表頭(個)',prop:'cityTrafficHubNum',width:'110'}, {id:452,label:'三級表頭(個/km²)',prop:'cityTrafficHubDst',width:'110'}, {id:453,label:'三級表頭(人次/km²)',prop:'cityTrafficHubFlow',width:'140'} ], }, {id:460,label:'二級表頭',prop:'',width:'',children:[ {id:461,label:'三級表頭(km)',prop:'cityTrafficNetNum',width:'110'}, {id:462,label:'三級表頭',prop:'cityTrafficNetDst',width:'140'} ], }, ]}, {id:500,label:'一級表頭',prop:'',width:'',children:[ {id:510,label:'二級表頭',prop:'',width:'',children:[ {id:511,label:'三級表頭(km²)',prop:'pubServeLandArea',width:'110'}, {id:512,label:'三級表頭',prop:'pubServeLandDst',width:'110'} ], }, {id:520,label:'二級表頭',prop:'',width:'',children:[ {id:521,label:'三級表頭(個)',prop:'hospitalResourcesNum',width:'110'}, {id:522,label:'三級表頭(km²)',prop:'hospitalResourcesArea',width:'110'}, {id:523,label:'三級表頭(個/km²)',prop:'hospitalResourcesDst',width:'110'} ], },{id:530,label:'二級表頭',prop:'',width:'',children:[ {id:531,label:'三級表頭(個)',prop:'schoolResourcesNum',width:'110'}, {id:532,label:'三級表頭(km²)',prop:'schoolResourcesArea',width:'110'}, {id:533,label:'三級表頭(個/km²)',prop:'schoolResourcesDst',width:'110'} ], }, {id:540,label:'二級表頭',prop:'',width:'',children:[ {id:541,label:'三級表頭(個)',prop:'humanResourcesNum',width:'110'}, {id:542,label:'三級表頭(個/km²)',prop:'humanResourcesDst',width:'110'} ], }, {id:550,label:'二級表頭',prop:'',width:'',children:[ {id:551,label:'三級表頭(個)',prop:'businessResourcesNum',width:'110'}, {id:552,label:'三級表頭(個/km²)',prop:'businessResourcesDst',width:'110'} ], }, {id:560,label:'二級表頭',prop:'',width:'',children:[ {id:561,label:'三級表頭(個)',prop:'environResourcesNum',width:'110'}, {id:562,label:'三級表頭(個/km²)',prop:'environResourcesDst',width:'110'} ], }, ]}, {id:600,label:'一級表頭',prop:'',width:'',children:[ {id:610,label:'二級表頭',prop:'',width:'',children:[ {id:611,label:'三級表頭(分)',prop:'populationScore',width:'110'}, ], }, {id:620,label:'二級表頭',prop:'',width:'',children:[ {id:621,label:'三級表頭(分)',prop:'landScore',width:'110'}, ], },{id:630,label:'二級表頭',prop:'',width:'',children:[ {id:631,label:'三級表頭(分)',prop:'trafficScore',width:'110'}, ], }, {id:640,label:'二級表頭',prop:'',width:'',children:[ {id:641,label:'三級表頭(分)',prop:'communalFacilitiesScore',width:'110'}, ], }, {id:650,label:'二級表頭',prop:'',width:'',children:[ {id:651,label:'三級表頭(分)',prop:'modelScore',width:'110'}, ], } ]}, ],
注:動態(tài)生成表頭必須配置"key"
view:
以上這篇vue+element-ui動態(tài)生成多級表頭的方法就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持腳本之家。
相關文章
解決vue prop傳值default屬性如何使用,為何不生效的問題
這篇文章主要介紹了解決vue prop傳值default屬性如何使用,為何不生效的問題。具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧2020-09-09Vue中Class和Style實現v-bind綁定的幾種用法
項目開發(fā)中給元素添加/刪除 class 是非常常見的行為之一, 例如網站導航都會給選中項添加一個 active 類用來區(qū)別選與未選中的樣式,那么在 vue 中 我們如何處理這類的效果呢?下面我們就一起來了解一下2021-05-05vue中html2canvas給指定區(qū)域添加滿屏水印
本文主要介紹了vue中html2canvas給指定區(qū)域添加滿屏水印,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友們下面隨著小編來一起學習學習吧2023-11-11element-plus的el-table自定義表頭篩選查詢功能實現
這篇文章主要介紹了element-plus的el-table自定義表頭篩選查詢功能實現,本文給大家介紹的非常詳細,對大家的學習或工作具有一定的參考借鑒價值,需要的朋友參考下吧2024-07-07