vue——el-table固定列 fixed
我们要实现如下图的效果:将操作列固定在右侧 在列中 加: fixed="right"<el-table-column label="操作" width="160" fixed="right"><template slot-scope="scope"><router-link :to="'/order/save/'+scope.row.id"><el-but
·
我们要实现如下图的效果:
将操作列固定在右侧 在列中 加: fixed="right"
<el-table-column label="操作" width="160" fixed="right">
<template slot-scope="scope">
<router-link :to="'/order/save/'+scope.row.id">
<el-button type="primary" size="mini" icon="el-icon-edit" >修改</el-button>
</router-link>
<el-button
size="mini"
type="danger"
>删除</el-button>
</template>
</el-table-column>
更多推荐
已为社区贡献4条内容
所有评论(0)