You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
472 B
23 lines
472 B
export enum ControlType {
|
|
TEXT = 'text',
|
|
SELECT = 'select',
|
|
CHECKBOX = 'checkbox',
|
|
RADIO = 'radio',
|
|
DATE = 'date'
|
|
}
|
|
|
|
export enum ControlComponent {
|
|
PREFIX = 'prefix',
|
|
POSTFIX = 'postfix',
|
|
PLACEHOLDER = 'placeholder',
|
|
VALUE = 'value',
|
|
CHECKBOX = 'checkbox',
|
|
RADIO = 'radio'
|
|
}
|
|
|
|
// 控件内容缩进方式
|
|
export enum ControlIndentation {
|
|
ROW_START = 'rowStart', // 从行起始位置缩进
|
|
VALUE_START = 'valueStart' // 从值起始位置缩进
|
|
}
|