fix:【system】邮箱移除无用的 remark 字段及相关表单项

This commit is contained in:
YunaiV
2025-12-20 20:48:24 +08:00
parent e850ffb038
commit 7ab917dc48
4 changed files with 0 additions and 18 deletions

View File

@@ -14,7 +14,6 @@ export namespace SystemMailTemplateApi {
content: string; content: string;
params: string[]; params: string[];
status: number; status: number;
remark: string;
createTime: Date; createTime: Date;
} }

View File

@@ -83,14 +83,6 @@ export function useFormSchema(): VbenFormSchema[] {
}, },
rules: z.number().default(CommonStatusEnum.ENABLE), rules: z.number().default(CommonStatusEnum.ENABLE),
}, },
{
fieldName: 'remark',
label: '备注',
component: 'Textarea',
componentProps: {
placeholder: '请输入备注',
},
},
]; ];
} }

View File

@@ -14,7 +14,6 @@ export namespace SystemMailTemplateApi {
content: string; content: string;
params: string[]; params: string[];
status: number; status: number;
remark: string;
createTime: Date; createTime: Date;
} }

View File

@@ -81,14 +81,6 @@ export function useFormSchema(): VbenFormSchema[] {
}, },
rules: z.number().default(CommonStatusEnum.ENABLE), rules: z.number().default(CommonStatusEnum.ENABLE),
}, },
{
fieldName: 'remark',
label: '备注',
component: 'Textarea',
componentProps: {
placeholder: '请输入备注',
},
},
]; ];
} }