目录

elementui-table默认勾选

# html table

<el-table :stripe="true" style="width: 100%" border highlight-current-row
                  ref="table"
                  :data="tableData"
                  row-key="id">
</el-table>

PS:注意 ref="table" 配置 不加这个在vue中会找不到这个组件

# vue

//为了防止指向错误 所以我都是直接提出来的
let self=this;
$.each(vm.tableData, function (index, item) {
	//这里可以用你的条件
    if (item.state == "0") {
             //默认选中
             self.$nextTick(function () {
                 self.$refs.table.toggleRowSelection(item, true);
             })
     }
})

如果有更好的解决办法 请留言

上次更新: 2024-11-06, 19:27:10
最近更新
01
java playwright爬虫
11-06
02
连接chrome调试
07-23
03
连接chrome调试
07-23
更多文章>