You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
403 B
TypeScript
17 lines
403 B
TypeScript
|
|
|
|
// 通用表单配置
|
|
export const proFormCommonOptions: Record<string,any> = {
|
|
}
|
|
|
|
// normal 804
|
|
export const proFormModelWidth: number = 804;
|
|
export const proFormItemStyleProps: Record<string, any> = {
|
|
width: proFormModelWidth - 30,
|
|
};
|
|
|
|
// max 968
|
|
export const proFormMaxModelWidth: number = 968;
|
|
export const proFormMaxItemStyleProps: Record<string, any> = {
|
|
width: proFormMaxModelWidth - 30,
|
|
}; |