mirror of
https://github.com/m-xlsea/ruoyi-plus-soybean.git
synced 2025-09-24 07:49:47 +08:00
64 lines
2.2 KiB
Vue
64 lines
2.2 KiB
Vue
<script setup lang="tsx">
|
|
import { useNaiveForm } from '@/hooks/common/form';
|
|
defineOptions({
|
|
name: 'TaskWaitingSearch'
|
|
});
|
|
|
|
interface Emits {
|
|
(e: 'reset'): void;
|
|
(e: 'search'): void;
|
|
}
|
|
|
|
const emit = defineEmits<Emits>();
|
|
|
|
const { formRef, validate, restoreValidation } = useNaiveForm();
|
|
const model = defineModel<Api.Workflow.TaskSearchParams>('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">
|
|
<NCollapse>
|
|
<NCollapseItem :title="$t('common.search')">
|
|
<NForm ref="formRef" :model="model" label-placement="left" :label-width="100">
|
|
<NGrid responsive="screen" item-responsive>
|
|
<NFormItemGi span="24 s:12 m:6" label="任务名称" path="nodeName" class="pr-24px">
|
|
<NInput v-model:value="model.nodeName" placeholder="请输入任务名称" />
|
|
</NFormItemGi>
|
|
<NFormItemGi span="24 s:12 m:6" label="流程定义名称" path="bucketName" class="pr-24px">
|
|
<NInput v-model:value="model.flowName" placeholder="请输入流程定义名称" />
|
|
</NFormItemGi>
|
|
<NFormItemGi span="24 s:12 m:6" label="流程定义编码" path="flowCode" class="pr-24px">
|
|
<NInput v-model:value="model.flowCode" placeholder="流程定义编码" />
|
|
</NFormItemGi>
|
|
<NFormItemGi span="24 s:12 m:6" 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>
|