修复已知bug

This commit is contained in:
2024-07-23 16:41:29 +08:00
parent e0b85aae8f
commit 717c89a58e
12 changed files with 92 additions and 36 deletions

View File

@@ -1,11 +1,11 @@
<!-- 搜索表单 -->
<template>
<a-space :size="10" style="flex-wrap: wrap">
<a-space :size="10" style="flex-wrap: wrap" v-if="count === 0">
<a-button type="primary" class="ele-btn-icon" @click="add">
<template #icon>
<PlusOutlined />
</template>
<span>添加</span>
<span>创建</span>
</a-button>
</a-space>
</template>
@@ -19,6 +19,7 @@
defineProps<{
// 选中的角色
selection?: [];
count?: 0;
}>(),
{}
);