Exemplo n.º 1
0
 public JsonResult Checked(string userName, string userPwd)
 {
     accountLogic.Checked(userName, userPwd);
     return(Success(new
     {
         msg = "登录成功!",
         url = AppConfig.HomePageUrl
     }));
 }
Exemplo n.º 2
0
 public ActionResult Checked(string uName, string uPwd, string loginCode)
 {
     _AccountLogic.Checked(uName, uPwd, loginCode);
     return(this.Success(new
     {
         status = 1,
         url = AppConfig.HomePageUrl
     }));
 }