element-plus级联选择框可选择任意一级,选择后关闭选择框

336 阅读1分钟

image.png

如上图,选择文旅服务后关闭级联选择框,首先开启 checkStrictly: true 可以选择任意一级,但是选择后不会关闭选择框,可利用change事件关闭选择框。代码如下:

<el-cascader
  ref="cascaderRef"
  v-model="businessId"
  placeholder="请选择所属业务"
  :options="businessList"
  :props="{ label: 'name', value: 'id', emitPath: false, checkStrictly: true }"
  @change="changeBusiness"
/>
const cascaderRef = ref<any>(null)
// 利用change事件关闭选择了
const changeBusiness = async (e: any) => {
  cascaderRef.value.togglePopperVisible()
}