chore: form modal/drawer should not closeable on click mask

This commit is contained in:
dap
2024-09-20 14:48:17 +08:00
parent e8a2916470
commit 42ead07555
9 changed files with 10 additions and 10 deletions

View File

@@ -23,7 +23,7 @@ export const drawerSchema: FormSchemaGetter = () => [
},
fieldName: 'deptId',
label: '所属部门',
rules: 'required',
rules: 'selectRequired',
},
{
component: 'Input',

View File

@@ -109,7 +109,7 @@ async function handleCancel() {
</script>
<template>
<BasicDrawer :title="title" class="w-[600px]">
<BasicDrawer :close-on-click-modal="false" :title="title" class="w-[600px]">
<BasicForm />
</BasicDrawer>
</template>