From e3271aaeb41fd1b5203b2926b7eeb132651417a7 Mon Sep 17 00:00:00 2001
From: wupengfei <834520024@qq.com>
Date: 星期一, 11 八月 2025 17:32:34 +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