From fea063f5c7fdf79d56ada2dd2b8045a44ca2db44 Mon Sep 17 00:00:00 2001 From: wupengfei <834520024@qq.com> Date: 星期五, 08 八月 2025 15:17:55 +0800 Subject: [PATCH] feat: 任务 --- src/views/EmploymentManage/CheckManage.vue | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/views/EmploymentManage/CheckManage.vue b/src/views/EmploymentManage/CheckManage.vue index 46eb2db..7890416 100644 --- a/src/views/EmploymentManage/CheckManage.vue +++ b/src/views/EmploymentManage/CheckManage.vue @@ -66,7 +66,6 @@ } from '@bole-core/components'; import { CheckManageColumns } from './constants'; import { FlexEnterpriseSettingStatus, Gender } from '@/constants'; -import { OrderInputType } from '@bole-core/core'; import CheckManageDialog from './components/CheckManageDialog.vue'; defineOptions({ @@ -137,7 +136,7 @@ { defaultExtraParams: { searchWord: '', - orderInput: [{ property: 'id', order: OrderInputType.Desc }], + orderInput: [{ property: 'id', order: EnumPagedListOrder.Desc }], flexEnterpriseSettingStatus: '' as any as FlexEnterpriseSettingStatus, }, queryKey: ['flexEnterpriseServices/getFlexEnterpriseList'], @@ -145,7 +144,7 @@ } ); -const { dialogProps, handleEdit, editForm } = useFormDialog({ +const { dialogProps, dialogState, handleEdit, editForm } = useFormDialog({ defaultFormParams: { id: '', type: '', @@ -161,5 +160,6 @@ function handleCheck(val) { console.log('val: ', val); + dialogState.dialogVisible = false; } </script> -- Gitblit v1.9.1