已经搞定啦 在这里做一个笔记 方便以后的同学直接使用
<el-cascader
ref="tree"
v-if="isDepartmentShow"
placeholder=""
v-model="ruleForm.departmentId"
:options="deptList"
collapse-tags
:emitPath="false"
:show-all-levels="false"
:props="{ value: 'id', label: 'dept_name',children:'child',multiple:true, checkStrictly:true,emitPath:false }"
@change="handleChange">
</el-cascader>
checkStrictly:true,
emitPath:false
这两个属性重要 一定要加上 后面打印 change方法里面的参数 把得到的值处理成想要的数据格式就行
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…