<el-table :data="tableData" style="width: 100%" border><el-table-column width="180"><!-- 自定义标题--><template slot="header"><i class="el-icon-time"></i><span>自定义标题</span></template><!-- 数据显示 --><template scope="scope"><el-tag v-if="scope.row.show==0">{{scope.row.date}}</el-tag><el-tag type="danger" v-else>{{scope.row.date}}</el-tag></template></el-table-column><el-table-column prop="name" width="180"><!-- 自定义标题--><template slot="header"> <el-input size="mini" placeholder="请输入名称搜索"></el-input></template></el-table-column><el-table-column prop="address" label="地址"></el-table-column></el-table>
tableData: [{date: '2016-05-02',name: '王小虎',show:0,address: '上海市普陀区金沙江路 1518 弄'}, {date: '2016-05-04',name: '王小虎',show:1,address: '上海市普陀区金沙江路 1517 弄'}, {date: '2016-05-01',name: '王小虎',show:1,address: '上海市普陀区金沙江路 1519 弄'}, {date: '2016-05-03',name: '王小虎',show:1,address: '上海市普陀区金沙江路 1516 弄'}]
效果演示