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.
 
 
 
 
help_user/src/bootstrap/LoginFormDesc.ts

26 lines
436 B

/**
* 文本输入框组件封装
*/
export interface InputFormDesc {
//表单名
name: string
//描述信息
desc: string
//表单值
value?: string
//数据类型
type?:
|"text"
|"password"
//值改变事件
onChange: Function
//验证信息
valid?:{
check?:Boolean;
valid?:String;
invalid?:String;
}
//bootstrap col
col?:number
}