From e4cdac36da0a143d18e82260d4b61abb28d8d3e8 Mon Sep 17 00:00:00 2001 From: zhouz <> Date: Fri, 14 Aug 2026 16:53:03 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BD=BF=E7=94=A8=E6=A0=87=E5=87=86?= =?UTF-8?q?=E5=BC=B9=E7=AA=97=E7=BB=B4=E6=8A=A4=E6=97=A5=E8=AE=A1=E5=88=92?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../views/lms/daily-plan/management/index.vue | 8 ++++---- .../lms/daily-plan/management/modules/form.vue | 16 ++++++++-------- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/nl-ui/nl-ui-admin-vben/yudao-ui-admin-vben/apps/web-antdv-next/src/views/lms/daily-plan/management/index.vue b/nl-ui/nl-ui-admin-vben/yudao-ui-admin-vben/apps/web-antdv-next/src/views/lms/daily-plan/management/index.vue index 3f2c078a..ac33cd58 100644 --- a/nl-ui/nl-ui-admin-vben/yudao-ui-admin-vben/apps/web-antdv-next/src/views/lms/daily-plan/management/index.vue +++ b/nl-ui/nl-ui-admin-vben/yudao-ui-admin-vben/apps/web-antdv-next/src/views/lms/daily-plan/management/index.vue @@ -16,7 +16,7 @@ import StartOrder from './modules/start-order.vue'; const SOURCE_MANUAL = 2; const ORDER_NOT_STARTED = 0; -const [FormDrawer, formDrawerApi] = useVbenDrawer({ +const [FormModal, formModalApi] = useVbenModal({ connectedComponent: Form, destroyOnClose: true, }); @@ -38,11 +38,11 @@ function handleRefresh() { } function handleCreate() { - formDrawerApi.setData({ isUpdate: false }).open(); + formModalApi.setData({ isUpdate: false }).open(); } function handleEdit(row: LmsDailyPlanApi.DailyPlan) { - formDrawerApi.setData({ isUpdate: true, row }).open(); + formModalApi.setData({ isUpdate: true, row }).open(); } function handleDetail(row: LmsDailyPlanApi.DailyPlan) { @@ -88,7 +88,7 @@ const [Grid, gridApi] = useVbenVxeGrid({