64 lines
1.7 KiB
Vue
64 lines
1.7 KiB
Vue
<script setup lang="ts">
|
|
import { $t } from '@/locales';
|
|
import { useNaiveForm } from '@/hooks/common/form';
|
|
|
|
defineOptions({
|
|
name: 'GroupConfigSearch'
|
|
});
|
|
|
|
interface Emits {
|
|
(e: 'reset'): void;
|
|
(e: 'search'): void;
|
|
}
|
|
|
|
const emit = defineEmits<Emits>();
|
|
|
|
const { formRef, validate, restoreValidation } = useNaiveForm();
|
|
|
|
const model = defineModel<Api.GroupConfig.GroupConfigSearchParams>('model', { required: true });
|
|
|
|
async function reset() {
|
|
await restoreValidation();
|
|
emit('reset');
|
|
}
|
|
|
|
async function search() {
|
|
await validate();
|
|
emit('search');
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<NCard :bordered="false" size="small" class="card-wrapper">
|
|
<NForm ref="formRef" :model="model" label-placement="left" :label-width="80">
|
|
<NGrid responsive="screen" item-responsive>
|
|
<NFormItemGi span="24 s:12 m:6" :label="$t('page.groupConfig.groupName')" path="userName" class="pr-24px">
|
|
<NInput v-model:value="model.groupName" :placeholder="$t('page.groupConfig.form.groupName')" />
|
|
</NFormItemGi>
|
|
<NFormItemGi span="24 m:12" class="pr-24px">
|
|
<NSpace class="w-full" justify="end">
|
|
<NButton @click="reset">
|
|
<template #icon>
|
|
<icon-ic-round-refresh class="text-icon" />
|
|
</template>
|
|
{{ $t('common.reset') }}
|
|
</NButton>
|
|
<NButton type="primary" ghost @click="search">
|
|
<template #icon>
|
|
<icon-ic-round-search class="text-icon" />
|
|
</template>
|
|
{{ $t('common.search') }}
|
|
</NButton>
|
|
</NSpace>
|
|
</NFormItemGi>
|
|
</NGrid>
|
|
</NForm>
|
|
</NCard>
|
|
</template>
|
|
|
|
<style scoped>
|
|
:deep(.n-card-header) {
|
|
--n-title-font-weight: 600 !important;
|
|
}
|
|
</style>
|