Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
Theater
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
吴春
Theater
Commits
41cedddc
Commit
41cedddc
authored
Jan 28, 2019
by
吴春
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改
parent
18d2a083
Pipeline
#21
canceled with stages
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
120 additions
and
4 deletions
+120
-4
HomeController.cs
EheMall.Web/Areas/TicketMall/Controllers/HomeController.cs
+40
-1
LoginController.cs
EheMall.Web/Areas/TicketMall/Controllers/LoginController.cs
+2
-3
LoginController.cs.rej
...l.Web/Areas/TicketMall/Controllers/LoginController.cs.rej
+78
-0
No files found.
EheMall.Web/Areas/TicketMall/Controllers/HomeController.cs
View file @
41cedddc
...
...
@@ -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
);
}
...
...
EheMall.Web/Areas/TicketMall/Controllers/LoginController.cs
View file @
41cedddc
...
...
@@ -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
();
}
...
...
EheMall.Web/Areas/TicketMall/Controllers/LoginController.cs.rej
0 → 100644
View file @
41cedddc
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
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment