树状多选表格 需回显已选择的 可控制展开收起
<el-button v-if="!fold" @click="foldShow">
<i color="pink" class="el-icon-circle-plus"></i>全部展开
</el-button>
<el-button v-if="fold" @click="foldNone">
<i color="pink" class="el-icon-remove"></i>全部收起
</el-button>
<el-table v-loading="loading" :data="deptList" row-key="id" default-expand-all :tree-props="{children: 'children', hasChildren: 'hasChildren'}" ref="checkTable" @select="select" @select-all="selectAll" @selection-change="selChange">
<el-table-column type="selection" width="55"></el-table-column>
<el-table-column prop="roadName" label="路线编号" ></el-table-column>
<el-table-column prop="name" label="路线编号及所属公司"></el-table-column>
</el-table>
fold:true,<