通过修改label的样式解决:
注意:el-cascader-panel 是直接挂载在body上的,所以需要全局设置
.el-cascader-panel .el-radio{
width: 100%;
height: 100%;
z-index: 10;
position: absolute;
top: 10px;
right: -10px; }
.el-cascader-panel .el-radio__input{
visibility: hidden; //隐藏单选框,不隐藏就不用设置
}
.el-cascader-panel .el-cascader-node__postfix{
top: 10px;
}
来源:https://www.cnblogs.com/calamus/p/11813009.html