其他分享
首页 > 其他分享> > Iew UI 表格勾选功能@on-select、@on-select-all在 Vue 中的使用介绍

Iew UI 表格勾选功能@on-select、@on-select-all在 Vue 中的使用介绍

作者:互联网

通过给 columns 数据设置一项,指定 type: ‘selection’,即可自动开启多选功能。

给 data 项设置特殊 key _checked: true 可以默认选中当前项。

给 data 项设置特殊 key _disabled: true 可以禁止选择当前项。

正确使用好以下事件,可以达到需要的效果:

@on-select,选中某一项触发,返回值为 selection 和 row,分别为已选项和刚选择的项。
@on-select-all,点击全选时触发,返回值为 selection,已选项。
@on-selection-change,只要选中项发生变化时就会触发,返回值为 selection,已选项。 

 

 官方文档的内容介绍完了还没看太懂,以例子说明一下@on-select、@on-select-all:

<!--表格-->
<Table border :columns="columns" :data="infolist" @on-select="selectOne" @on-select-all="selectAll">
</Table>
data() {
    return {
        columns: [
            {
                type: 'selection',
                width: 60,
                align: 'center'
            },
            {
                title: 'Name',
                key: 'name'
            },
            {
                title: 'Age',
                key: 'age'
            },
        ],
    }
},
methods: {
    // 选中某一项触发
    selectOne(selection, row) {
        console.log(selection, '所有已经选的'); // selection是所有已经选的
        console.log(row, '当前选的'); // row是选中当前选的
    },
    // 全选时触发
    selectAll(selection) {
        console.log(selection, '全部勾选');
    },
},

 

标签:触发,selection,Iew,Vue,选中,key,select,row
来源: https://www.cnblogs.com/ZXH-null/p/16449600.html