71 lines
1.5 KiB
Vue
71 lines
1.5 KiB
Vue
<!-- 搜索表单 -->
|
|
<template>
|
|
<a-space :size="10" style="flex-wrap: wrap">
|
|
<!-- <a-button type="primary" class="ele-btn-icon" @click="add">-->
|
|
<!-- <template #icon>-->
|
|
<!-- <PlusOutlined />-->
|
|
<!-- </template>-->
|
|
<!-- <span>添加</span>-->
|
|
<!-- </a-button>-->
|
|
<a-input-search
|
|
allow-clear
|
|
placeholder="请输入关键词"
|
|
v-model:value="where.keywords"
|
|
@pressEnter="search"
|
|
@search="search"
|
|
/>
|
|
<!-- <a-button @click="reset">重置</a-button>-->
|
|
</a-space>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { PlusOutlined } from '@ant-design/icons-vue';
|
|
import { watch } from 'vue';
|
|
import useSearch from '@/utils/use-search';
|
|
import { UserParam } from '@/api/system/user/model';
|
|
|
|
const props = withDefaults(
|
|
defineProps<{
|
|
// 选中的角色
|
|
selection?: [];
|
|
}>(),
|
|
{}
|
|
);
|
|
|
|
const emit = defineEmits<{
|
|
(e: 'search', where?: UserParam): void;
|
|
(e: 'add'): void;
|
|
(e: 'remove'): void;
|
|
(e: 'batchMove'): void;
|
|
}>();
|
|
|
|
// 新增
|
|
const add = () => {
|
|
emit('add');
|
|
};
|
|
|
|
// 表单数据
|
|
const { where, resetFields } = useSearch<UserParam>({
|
|
userId: undefined,
|
|
username: undefined,
|
|
phone: undefined,
|
|
realName: undefined,
|
|
keywords: undefined
|
|
});
|
|
|
|
const search = () => {
|
|
emit('search', where);
|
|
};
|
|
|
|
/* 重置 */
|
|
const reset = () => {
|
|
resetFields();
|
|
search();
|
|
};
|
|
|
|
watch(
|
|
() => props.selection,
|
|
() => {}
|
|
);
|
|
</script>
|