elementui中的el-table,(prop对应多个属性)中拼接两个列表字段并展示

文章描述:

element table字段显示多个属性

 

拼接属性

<el-table-column prop="startTime,endTime" label="活动时间">
        <template slot-scope="scope">
            {{scope.row.startTime}}至{{scope.row.endTime}}
        </template>
</el-table-column>

 

 

<template slot-scope="scope">
   <el-button size="mini" @click="handleEdit(scope.$index, scope.row)">编辑</el-button>
</template>

事件

handleEdit(index,row){
    console.log(index,row)
},

 

发布时间:2024/04/11

发表评论