mirror of
https://github.com/m-xlsea/ruoyi-plus-soybean.git
synced 2025-09-24 07:49:47 +08:00
88 lines
2.6 KiB
Vue
88 lines
2.6 KiB
Vue
<script setup lang="ts">
|
|
import { useDict } from '@/hooks/business/dict';
|
|
import { useNaiveForm } from '@/hooks/common/form';
|
|
import { $t } from '@/locales';
|
|
|
|
defineOptions({
|
|
name: 'TenantPackageSearch'
|
|
});
|
|
|
|
interface Emits {
|
|
(e: 'reset'): void;
|
|
(e: 'search'): void;
|
|
}
|
|
|
|
const emit = defineEmits<Emits>();
|
|
|
|
const { formRef, validate, restoreValidation } = useNaiveForm();
|
|
|
|
const model = defineModel<Api.System.TenantPackageSearchParams>('model', { required: true });
|
|
|
|
const { options: sysNormalDisableOptions } = useDict('sys_normal_disable', false);
|
|
|
|
async function reset() {
|
|
await restoreValidation();
|
|
emit('reset');
|
|
}
|
|
|
|
async function search() {
|
|
await validate();
|
|
emit('search');
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<NCard :bordered="false" size="small" class="card-wrapper">
|
|
<NCollapse>
|
|
<NCollapseItem :title="$t('common.search')" name="user-search">
|
|
<NForm ref="formRef" :model="model" label-placement="left" :label-width="80">
|
|
<NGrid responsive="screen" item-responsive>
|
|
<NFormItemGi
|
|
span="24 s:12 m:8"
|
|
:label="$t('page.system.tenantPackage.packageName')"
|
|
path="packageName"
|
|
class="pr-24px"
|
|
>
|
|
<NInput
|
|
v-model:value="model.packageName"
|
|
:placeholder="$t('page.system.tenantPackage.form.packageName.required')"
|
|
/>
|
|
</NFormItemGi>
|
|
<NFormItemGi
|
|
span="24 s:12 m:8"
|
|
:label="$t('page.system.tenantPackage.status')"
|
|
path="status"
|
|
class="pr-24px"
|
|
>
|
|
<NSelect
|
|
v-model:value="model.status"
|
|
:placeholder="$t('page.system.tenantPackage.form.status.required')"
|
|
:options="sysNormalDisableOptions"
|
|
clearable
|
|
/>
|
|
</NFormItemGi>
|
|
<NFormItemGi span="24 s:24 m:8" 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>
|
|
</NCollapseItem>
|
|
</NCollapse>
|
|
</NCard>
|
|
</template>
|
|
|
|
<style scoped></style>
|