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.
26 lines
868 B
TypeScript
26 lines
868 B
TypeScript
/*
|
|
* @Author: zhoux zhouxia@supervision.ltd
|
|
* @Date: 2023-11-13 14:19:57
|
|
* @LastEditors: zhoux zhouxia@supervision.ltd
|
|
* @LastEditTime: 2023-11-14 14:46:05
|
|
* @FilePath: \general-ai-platform-web\config\defaultForm.ts
|
|
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE2
|
|
*/
|
|
|
|
|
|
// 通用表单配置
|
|
export const proFormCommonOptions: Record<string,any> = {
|
|
}
|
|
|
|
// normal 804
|
|
export const proFormModelWidth: number = 804;
|
|
export const proFormItemStyleProps: Record<string, any> = {
|
|
width: proFormModelWidth - 30, // 一列
|
|
column2Width: (proFormModelWidth - 62)/2 , // 两列
|
|
};
|
|
|
|
// max 968
|
|
export const proFormMaxModelWidth: number = 968;
|
|
export const proFormMaxItemStyleProps: Record<string, any> = {
|
|
width: proFormMaxModelWidth - 30,
|
|
}; |