elementui中的el-table,(prop对应多个属性)中拼接两个列表字段并展示
element ui, tabel中拼接两个字段,prop关联多个属性
·
1、项目需求中,table需要拼接两个字段,可是后端返回的是开始时间和结束时间两个字段
2、用template使用插槽的方式进行拼接即可,prop需要关联两个字段,如下
<el-table-column prop="startTime,endTime" label="活动时间">
<template slot-scope="scope">
{{scope.row.startTime}}至{{scope.row.endTime}}
</template>
</el-table-column>
更多推荐
已为社区贡献4条内容
所有评论(0)