Files
mp-vue/src/views/system/dictionary/components/dict-data-search.vue
2025-07-25 13:03:01 +08:00

71 lines
1.7 KiB
Vue

<!-- 搜索表单 -->
<template>
<a-row :gutter="16">
<a-col :xl="6" :lg="8" :md="11" :sm="24" :xs="24">
<a-input
v-model:value.trim="where.keywords"
placeholder="输入关键字搜索"
allow-clear
/>
</a-col>
<a-col :xl="18" :lg="16" :md="13" :sm="24" :xs="24">
<a-space :size="10" style="flex-wrap: wrap">
<a-button type="primary" class="ele-btn-icon" @click="search">
<template #icon>
<search-outlined />
</template>
<span>查询</span>
</a-button>
<a-button type="primary" class="ele-btn-icon" @click="add">
<template #icon>
<plus-outlined />
</template>
<span>新建</span>
</a-button>
<a-button danger type="primary" class="ele-btn-icon" @click="remove">
<template #icon>
<delete-outlined />
</template>
<span>删除</span>
</a-button>
</a-space>
</a-col>
</a-row>
</template>
<script lang="ts" setup>
import {
PlusOutlined,
DeleteOutlined,
SearchOutlined
} from '@ant-design/icons-vue';
import useSearch from '@/utils/use-search';
import type { DictionaryDataParam } from '@/api/system/dictionary-data/model';
const emit = defineEmits<{
(e: 'search', where?: DictionaryDataParam): void;
(e: 'add'): void;
(e: 'remove'): void;
}>();
// 表单数据
const { where } = useSearch<DictionaryDataParam>({
keywords: ''
});
/* 搜索 */
const search = () => {
emit('search', where);
};
/* 添加 */
const add = () => {
emit('add');
};
/* 删除 */
const remove = () => {
emit('remove');
};
</script>