element table组件多选改单选

效果图

表单选.png
  1. table组件属性设置

    
    

  1. 选中事件处理

handleSelectionChange (val) {
    this.multipleSelection = val;
    if (val.length) {
        if (val.length > 1) {
            this.$refs.multipleTable.toggleRowSelection(val[0]);
        }
        this.ruleForm.userName = this.multipleSelection[0].username
    }
}

  1. 隐藏全选勾选框
// 隐藏全选框
::v-deep .has-gutter .el-table-column--selection .el-checkbox {
    display: none !important;
}

版权声明:
作者:感冒的梵高
链接:https://www.techfm.club/p/42449.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>