72 lines
2.4 KiB
Vue
72 lines
2.4 KiB
Vue
<script setup lang="ts">
|
|
import { ref } from 'vue';
|
|
import { $t } from '@/locales';
|
|
import { useAppStore } from '@/store/modules/app';
|
|
import { useNaiveForm } from '@/hooks/common/form';
|
|
|
|
defineOptions({
|
|
name: 'NotifyConfigSearch'
|
|
});
|
|
|
|
interface Emits {
|
|
(e: 'reset'): void;
|
|
(e: 'search'): void;
|
|
}
|
|
|
|
const emit = defineEmits<Emits>();
|
|
|
|
const appStore = useAppStore();
|
|
|
|
const title = ref(appStore.isMobile ? $t('common.search') : undefined);
|
|
|
|
const { formRef, validate, restoreValidation } = useNaiveForm();
|
|
|
|
const model = defineModel<Api.NotifyConfig.NotifySearchParams>('model', { required: true });
|
|
|
|
async function reset() {
|
|
await restoreValidation();
|
|
emit('reset');
|
|
}
|
|
|
|
async function search() {
|
|
await validate();
|
|
emit('search');
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<NCard :title="title" :bordered="false" size="small" class="card-wrapper">
|
|
<NForm ref="formRef" :model="model" label-placement="left" :label-width="80" :show-feedback="appStore.isMobile">
|
|
<NGrid responsive="screen" item-responsive>
|
|
<NFormItemGi span="24 s:12 m:6" :label="$t('page.notifyConfig.groupName')" path="userName" class="pr-24px">
|
|
<NSelect v-model:value="model.groupName" :placeholder="$t('page.notifyConfig.groupName')" clearable />
|
|
</NFormItemGi>
|
|
<NFormItemGi span="24 s:12 m:6" :label="$t('page.notifyConfig.notifyStatus')" path="userName" class="pr-24px">
|
|
<NSelect v-model:value="model.notifyStatus" :placeholder="$t('page.notifyConfig.notifyStatus')" clearable />
|
|
</NFormItemGi>
|
|
<NFormItemGi span="24 s:12 m:6" :label="$t('page.notifyConfig.notifyScene')" path="userName" class="pr-24px">
|
|
<NSelect v-model:value="model.notifyScene" :placeholder="$t('page.notifyConfig.notifyScene')" clearable />
|
|
</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></style>
|