Element el-switch 现在的样式无法将文字显示到组件内 ,需要自己修改样式。具体如下
<el-switch
:disabled="s==item.select.length-1"
class="switch"
v-model="sitem.or"
active-color="#13ce66"
inactive-color="#409EFF"
active-text="或"
inactive-text="且">
</el-switch>
<style lang="css">
/* switch按钮样式 */
.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-left: 4px;
}
/*关闭时文字位置设置*/
.switch .el-switch__label--left {
z-index: 1;
}
/* 调整关闭时文字的显示位子 */
.switch .el-switch__label--left span{
margin-left: 30px;
}
/*显示文字*/
.switch .el-switch__label.is-active {
display: block;
}
/* 调整按钮的宽度 */
.switch.el-switch .el-switch__core,
.el-switch .el-switch__label {
width: 50px !important;
margin: 0;
}
.relation-border{
border-left: 2px dashed #c4c2c2;
padding-left: 10px;
}
</style>