feat: 完成用户页面查询

This commit is contained in:
橙子
2024-08-31 12:55:04 +08:00
parent 6e9dd669ba
commit cf5c46b2ce
6 changed files with 24 additions and 24 deletions

View File

@@ -128,7 +128,7 @@ defineExpose({ getRef });
:options="newFormInline.higherDeptOptions"
:props="{
value: 'id',
label: 'name',
label: 'deptName',
emitPath: false,
checkStrictly: true
}"
@@ -137,7 +137,7 @@ defineExpose({ getRef });
placeholder="请选择归属部门"
>
<template #default="{ node, data }">
<span>{{ data.name }}</span>
<span>{{ data.deptName }}</span>
<span v-if="!node.isLeaf"> ({{ data.children.length }}) </span>
</template>
</el-cascader>