1. 程式人生 > 實用技巧 >element ui固定表頭以及轉換後臺返回的0或1,true或false

element ui固定表頭以及轉換後臺返回的0或1,true或false

element ui固定表頭

只要在el-table元素中定義了height屬性,即可實現固定表頭的表格,而不需要額外的程式碼。

<template> <el-table :data="tableData" height="250" border style="width: 100%">        <el-table-column prop="date" label="日期" width="180"> </el-table-column>        <el-table-column prop="name" label="姓名" width="180"> </el-table-column>
       <el-table-column prop="address" label="地址"> </el-table-column> </el-table> 轉換後臺返回的0或1,true或false <el-table-columnproperty="isClose"label="是否更新"width="150":formatter="isLockFormatter"></el-table-column> isLockFormatter(row,index){ if(row.isClose){ return"已更新" }else{ return"未更新" } }