fix: missing formPath

This commit is contained in:
dap 2025-01-20 11:26:29 +08:00
parent a3bad43c16
commit 15a7793dce

View File

@ -1,6 +1,6 @@
import type { FormSchemaGetter } from '#/adapter/form';
import type { VxeGridProps } from '#/adapter/vxe-table';
import { type FormSchemaGetter } from '#/adapter/form';
import { OptionsTag } from '#/components/table';
import { publishStatusOptions } from './constant';
@ -94,4 +94,10 @@ export const modalSchema: FormSchemaGetter = () => [
label: '流程名称',
rules: 'required',
},
{
component: 'Input',
fieldName: 'formPath',
label: '表单路径',
rules: 'required',
},
];