Commit 41cedddc authored by 吴春's avatar 吴春

修改

parent 18d2a083
Pipeline #21 canceled with stages
......@@ -42,11 +42,18 @@ namespace EheMall.Web.Areas.TicketMall.Controllers
_OrderBillingService = EngineContext.Current.ResolveOptional<IOrderBillingService>();
}
#region 首页
public ActionResult NoticeShow(Guid id)
{
if (CurrentClient == null)
{
return Redirect("/TicketMall/Login/Index");
}
var model = _NoticeServices.Get(id);
if (model == null)
{
......@@ -58,6 +65,10 @@ namespace EheMall.Web.Areas.TicketMall.Controllers
public ActionResult Index()
{
if (CurrentClient == null)
{
return Redirect("/TicketMall/Login/Index");
}
#region 通知公告
var noticeList = _NoticeServices.GetAllList(5);
ViewBag.noticeList = noticeList;
......@@ -96,6 +107,10 @@ namespace EheMall.Web.Areas.TicketMall.Controllers
#region 我的账单
public ActionResult GetTotalBillingCount(string StartTime)
{
if (CurrentClient == null)
{
return Redirect("/TicketMall/Login/Index");
}
JObject inputs = new JObject();
inputs["sOrderBy"] = "CreateDate desc";
inputs["iBuyID"] = CurrentClient.ID.ToString();
......@@ -132,8 +147,12 @@ namespace EheMall.Web.Areas.TicketMall.Controllers
/// <param name="iPageSize"></param>
/// <returns></returns>
public ActionResult MyOrder(string OrderState, int PageIndex = 1, int iPageSize = 10)
public ActionResult MyOrder()
{
if (CurrentClient == null)
{
return Redirect("/TicketMall/Login/Index");
}
return View();
}
......@@ -219,6 +238,10 @@ namespace EheMall.Web.Areas.TicketMall.Controllers
/// <returns></returns>
public ActionResult MyMessage()
{
if (CurrentClient == null)
{
return Redirect("/TicketMall/Login/Index");
}
return View();
}
......@@ -254,6 +277,10 @@ namespace EheMall.Web.Areas.TicketMall.Controllers
/// <returns></returns>
public ActionResult MessageShow(Guid id)
{
if (CurrentClient == null)
{
return Redirect("/TicketMall/Login/Index");
}
var model = _SysMessageService.Get(id);
......@@ -274,6 +301,10 @@ namespace EheMall.Web.Areas.TicketMall.Controllers
public ActionResult Aq()
{
if (CurrentClient == null)
{
return Redirect("/TicketMall/Login/Index");
}
return View();
}
#endregion
......@@ -282,6 +313,10 @@ namespace EheMall.Web.Areas.TicketMall.Controllers
#region 帮助中心
public ActionResult Help()
{
if (CurrentClient == null)
{
return Redirect("/TicketMall/Login/Index");
}
var list = _ArticleTypeService.GetAllList(0, 0);
List<SelectListItem> objArticleTypeList = new List<SelectListItem>();
objArticleTypeList.Add(new SelectListItem() { Text = "请选择", Value = "" });
......@@ -324,6 +359,10 @@ namespace EheMall.Web.Areas.TicketMall.Controllers
public ActionResult MemberInfo()
{
if (CurrentClient == null)
{
return Redirect("/TicketMall/Login/Index");
}
Member member = CurrentClient;
return View(member);
}
......
......@@ -30,10 +30,9 @@ namespace EheMall.Web.Areas.TicketMall.Controllers
{
if (Request.IsAjaxRequest())
{
string sPassWord = pwd.MD5();
//排除锁定的用户
var list = _MemberService.MemberLogin(uname,sPassWord);
var list = _MemberService.MemberLogin(uname, sPassWord);
var bIsExists = null != list && list.Count > 0;
if (bIsExists)
......@@ -44,7 +43,7 @@ namespace EheMall.Web.Areas.TicketMall.Controllers
this._auth.SignIn("MemberID", list[0].ID.ToString(), true);
return Redirect("/Mobile/Home");
}
return Json(new { success = bIsExists, message = bIsExists ? "用户登录成功" : "用户名或密码错误!" });
return Json(new { valid = bIsExists, message = bIsExists ? "用户登录成功" : "用户名或密码错误!" });
}
return View();
}
......
diff a/EheMall.Web/Areas/TicketMall/Controllers/LoginController.cs b/EheMall.Web/Areas/TicketMall/Controllers/LoginController.cs (rejected hunks)
@@ -0,0 +1,75 @@
+using EheMall.Extensions;
+using EheMall.Infrastructure;
+using EheMall.Mvc;
+using EheMall.ServiceCenter;
+using System;
+using System.Web.Mvc;
+namespace EheMall.Web.Areas.TicketMall.Controllers
+{
+ public class LoginController : Controller
+ {
+ public IMemberService _MemberService { get; set; }
+ /// <summary>
+ /// 用户授权判断
+ /// </summary>
+ private IAuthenticate _auth { get; set; }
+ //private IMemberService _MemberService { get; set; }
+ public LoginController()
+ {
+ this._auth = EngineContext.Current.ResolveOptional<IAuthenticate>();
+ this._MemberService = EngineContext.Current.ResolveOptional<IMemberService>();
+ }
+ // GET: TicketMall/Login
+ public ActionResult Index()
+ {
+ return View();
+ }
+
+ [HttpPost]
+ public ActionResult Index(string uname, string pwd)
+ {
+ if (Request.IsAjaxRequest())
+ {
+ string sPassWord = pwd.MD5();
+ //排除锁定的用户
+ var list = _MemberService.MemberLogin(uname,sPassWord);
+
+ var bIsExists = null != list && list.Count > 0;
+ if (bIsExists)
+ {
+ if (list[0].bIsDeleted == true)
+ return Json(new { valid = false, message = "用户被锁定,限制登录" });
+ Session["Member"] = list[0];
+ this._auth.SignIn("MemberID", list[0].ID.ToString(), true);
+ return Redirect("/Mobile/Home");
+ }
+ return Json(new { valid = bIsExists, message = bIsExists ? "用户登录成功" : "用户名或密码错误!" });
+ }
+ return View();
+ }
+
+ // <summary>
+ /// 退出
+ /// </summary>
+ /// <returns></returns>
+ [HttpPost]
+ public ActionResult Exit()
+ {
+ if (Request.IsAjaxRequest())
+ {
+ try
+ {
+ EngineContext.Current.Resolve<IAuthenticate>().SignOut();
+ Session["Member"] = null;
+ return Json(new { valid = true, message = "退出成功" });
+ }
+ catch (Exception ex)
+ {
+ return Json(new { valid = false, message = "操作失败" });
+ }
+ }
+
+ return View();
+ }
+ }
+}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment