# 复选框功能
列设置
共 0 条
- 10条/页
- 20条/页
- 50条/页
- 100条/页
无数据
- 1
在JS中需配置
firstColumn
: { type: 'selection' }
clearSelection方法
: 清空选中的数据
<template>
<t-layout-page>
<t-layout-page-item>
<t-table
ref="tableCheckbox"
columnSetting
:table="table"
:columns="columns"
@selection-change="selectionChange"
isShowPagination
isShowFirstColumn="date"
/>
<el-button type="danger" @click="cancelCheck">取消选中</el-button>
</t-layout-page-item>
</t-layout-page>
</template>
<script>
export default {
data() {
return {
table: {
total: 0,
currentPage: 1,
pageSize: 10,
firstColumn: { type: 'selection' },
data: [
{
id: '1',
date: '2019-09-25',
name: '张三',
status: '2',
address: '广东省广州市天河区'
},
{
id: '2',
date: '2019-09-26',
name: '张三1',
status: '1',
address: '广东省广州市天广东省广州市天河区2广东省广州市天河区2河区2'
},
{
id: '2',
date: '2019-09-26',
name: '张三1',
status: '1',
address: '广东省广州市天广东省广州市天河区2广东省广州市天河区2河区2',
canBatchAudit: false
},
{
id: '2',
date: '2019-09-26',
name: '张三1',
status: '1',
address: '广东省广州市天广东省广州市天河区2广东省广州市天河区2河区2'
},
{},
{}
]
},
columns: [
{ prop: 'name', label: '姓名', minWidth: '100', noShowColumn: true },
{ prop: 'date', label: '日期', minWidth: '180', noShowColumn: true },
{ prop: 'address', label: '地址', minWidth: '220', noShowColumn: true },
]
}
},
mounted() {
console.log('TTable实例的方法', this.$refs.tableCheckbox)
},
methods: {
// 复选框选中
selectionChange(val) {
console.log('复选框选中值', val)
},
// 取消选中
cancelCheck() {
this.$refs.tableCheckbox.clearSelection()
}
}
}
</script>
显示代码
wocwin微信二维码