interface combogrid { /** * 标签名 */ fieldLabel: string /** * 标签宽度 */ labelWidth: string /** * 是否必填 */ required: boolean /** * 尺寸 * 可选值: 'large'| 'default'| 'small' */ size: 'large' | 'default' | 'small' /** * 占位字符 */ placeholder: string /** * 禁用 */ disabled: boolean /** * 只读 */ readonly: boolean /** * 隐藏 */ hidden: boolean }