若依-树表
树表效果
具体实现
表单部分
1 | <el-table |
row-key
:指定行的id
default-expand-all
:默认展开
:tree-props
:这个字段一般就这么写
js代码
1 | this.businessplanList = this.handleTree(response.rows, "id", "parentId"); |
树表的多选
全选的代码
表单部分
1 | <el-table |
@select-all="selectAll"
js代码
1 | method: { |
1 | method: { |
选中父节点自动选中子节点
表单部分
1 | <el-table |
@select="rowSelect"
js代码
1 | method: { |