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/LoginForm.ts

15 lines
264 B

/**
* 登陆表单
*/
import {PropCookie} from "./PropCookie";
export interface LoginForm extends PropCookie{
//管理员名
user?:string;
//密码
password?:string;
//跳转注册
toRegister:Function;
//登录
login:Function;
}