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/RegisterForm.tsx

11 lines
171 B

/**
* 注册表单
*/
export interface RegisterForm {
//管理员名
user?:string;
//密码
password?:string;
//跳转登录
toLogin:Function;
}