代码如下所示: <el-table-column label="商品状态" align="center"> <template slot-sco
代码如下所示:
<el-table-column label="商品状态" align="center">
<template slot-scope="{row}">
<el-switch
v-model="row.Goods_state"
class="switch"
:active-value="1"
:inactive-value="0"
active-text="上架"
inactive-text="下架"
@change="change($event,row)"
/>
</template>
</el-table-column>
参数说明:
width | switch 的宽度(像素) |
active-text | switch 打开时的文字描述 |
inactive-text | switch 关闭时的文字描述 |
active-value | switch 打开时的值 |
inactive-value | switch 关闭时的值 |
active-color | switch 打开时的背景色 |
inactive-color | switch 关闭时的背景色 |
完整代码:
<el-table-column label="商品状态" align="center">
<template slot-scope="{row}">
<el-switch
v-model="row.goods_state"
class="switch"
:active-value="1"
:inactive-value="0"
@change="change($event,row)"
/>
</template>
</el-table-column>
<script>
methods: {
//状态切换
change(data, row) {
console.log(data);
console.log(row);
//此处可以请求后端接口更改商品状态
},
}
};
</script>
如何让文字在按钮中显示如以下这样
解决办法:加入以下css样式
.switch .el-switch__label {
position: absolute;
display: none;
color: #fff !important;
}
.switch .el-switch__label--right {
z-index: 1;
}
.switch .el-switch__label--right span{
margin-right: 9px;
}
.switch .el-switch__label--left {
z-index: 1;
}
.switch .el-switch__label--left span{
margin-left: 9px;
}
.switch .el-switch__label.is-active {
display: block;
}
.switch.el-switch .el-switch__core,
.el-switch .el-switch__label {
width: 60px !important;
margin: 0;
}
到此这篇关于Vue+Element switch组件的使用的文章就介绍到这了,更多相关Vue Element switch组件内容请搜索编程网以前的文章或继续浏览下面的相关文章希望大家以后多多支持编程网!
--结束END--
本文标题: Vue+Element switch组件的使用示例代码详解
本文链接: https://lsjlt.com/news/152638.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-01-12
2023-05-20
2023-05-20
2023-05-20
2023-05-20
2023-05-20
2023-05-20
2023-05-20
2023-05-20
2023-05-20
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0