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/account/LoginProps.ts

20 lines
260 B

/**
* 登陆表单
*/
export interface LoginProps{
//跳转注册
toRegister:Function;
//登录
login:Function;
}
/**
* 登陆状态
*/
export interface LoginState {
//管理员名
user:string;
//密码
password:string;
}