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
918db1d2
Commit
918db1d2
authored
Mar 04, 2019
by
吴春
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
提交
parent
511efba4
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
36 additions
and
20 deletions
+36
-20
BaseTicketMallController.cs
EheMall.Mvc/Controllers/BaseTicketMallController.cs
+7
-5
TheaterSeat.cshtml
...ll.Web/Areas/Admin/Views/TheaterManage/TheaterSeat.cshtml
+15
-3
HomeController.cs
EheMall.Web/Areas/TicketMall/Controllers/HomeController.cs
+8
-6
LoginController.cs
EheMall.Web/Areas/TicketMall/Controllers/LoginController.cs
+3
-3
BuyTickets.cshtml
EheMall.Web/Areas/TicketMall/Views/Home/BuyTickets.cshtml
+2
-2
EheMall.Web.csproj.user
EheMall.Web/EheMall.Web.csproj.user
+1
-1
No files found.
EheMall.Mvc/Controllers/BaseTicketMallController.cs
View file @
918db1d2
...
...
@@ -39,11 +39,13 @@ namespace EheMall.Mvc.Controllers
Member
item
=
new
Member
();
if
(
Session
[
"Member"
]
==
null
)
{
string
sSignID
=
_auth
.
SignID
();
if
(
string
.
IsNullOrEmpty
(
sSignID
))
return
item
;
item
=
EngineContext
.
Current
.
Resolve
<
IMemberService
>().
Get
(
new
Guid
(
sSignID
));
Session
[
"Member"
]
=
item
;
//string sSignID = _auth.SignID();
//if (string.IsNullOrEmpty(sSignID))
// return item;
//item = EngineContext.Current.Resolve<IMemberService>().Get(new Guid(sSignID));
//Session["Member"] = item;
//item = Session["Member"] as Member;
item
=
null
;
return
item
;
}
item
=
Session
[
"Member"
]
as
Member
;
...
...
EheMall.Web/Areas/Admin/Views/TheaterManage/TheaterSeat.cshtml
View file @
918db1d2
...
...
@@ -263,7 +263,7 @@
var
self
=
this
;
function
MyViewModel
()
{
alert
();
//定义数组对象
// self.SeatData = ko.observableArray([]);
self
.
InitSeat
=
function
()
{
...
...
@@ -389,7 +389,6 @@
self
.
reSeat
=
function
(
dataRowIndex
)
{
var
dataList
=
SeatData
();
alert
();
var
col_input
=
$
(
"#col_input"
).
val
();
var
newObj
=
self
.
clone
(
SeatData
()[
dataRowIndex
]);
if
(
newObj
.
noLenth
>
0
)
...
...
@@ -770,7 +769,6 @@
if
((
leftFlag
||
rightFlag
)
&&
(
topFlag
||
bottomFlag
))
{
selectedList
.
push
(
blockList
[
i
]);
$
(
blockList
[
i
]).
removeClass
(
'seat'
);
reSeat
();
if
(
$
(
blockList
[
i
]).
hasClass
(
'seled'
))
{
$
(
blockList
[
i
]).
removeClass
(
'seled'
);
$
(
blockList
[
i
]).
addClass
(
'seat'
);
...
...
@@ -781,6 +779,20 @@
$
(
blockList
[
i
]).
removeClass
(
'twoArea'
);
$
(
blockList
[
i
]).
removeClass
(
'threeArea'
);
$
(
blockList
[
i
]).
removeClass
(
'specialArea'
);
if
((
$
(
blockList
[
i
]).
hasClass
(
'seled'
)
&&
$
(
blockList
[
i
]).
hasClass
(
'noSeat'
))
||
$
(
blockList
[
i
]).
hasClass
(
'seat'
)
&&
$
(
blockList
[
i
]).
hasClass
(
'noSeat'
))
{
$
(
blockList
[
i
]).
removeClass
(
'noSeat'
);
var
rowId
=
parseInt
(
$
(
blockList
[
i
]).
attr
(
'data_row_id'
))
-
1
;
var
newObj
=
self
.
clone
(
SeatData
()[
rowId
]);
var
iiii
=
parseInt
(
parseInt
(
$
(
blockList
[
i
]).
attr
(
'data_column_id'
)));
newObj
.
ColumnArray
[
iiii
].
SeatClassStr
=
"seled"
;
newObj
.
noLenth
=
1
;
console
.
log
(
newObj
);
SeatData
.
replace
(
SeatData
()[
rowId
],
newObj
);
reSeat
(
rowId
);
}
}
}
}
...
...
EheMall.Web/Areas/TicketMall/Controllers/HomeController.cs
View file @
918db1d2
...
...
@@ -87,7 +87,7 @@ namespace EheMall.Web.Areas.TicketMall.Controllers
#
endregion
#
region
广告图
var
AdvertisingPicList
=
_AdvertisingPicService
.
GetAllList
();
var
AdvertisingPicList
=
_AdvertisingPicService
.
GetAllList
()
.
OrderBy
(
x
=>
x
.
Sort
)
;
ViewBag
.
AdvertisingPicList
=
AdvertisingPicList
;
#
endregion
return
View
();
...
...
@@ -126,11 +126,12 @@ namespace EheMall.Web.Areas.TicketMall.Controllers
return
PartialView
(
"_SearchIndex"
,
list
);
}
public
ActionResult
GetTotalCount
(
string
StartTime
,
string
Name
)
public
ActionResult
GetTotalCount
(
string
StartTime
,
string
EndTime
,
string
Name
)
{
JObject
inputs
=
new
JObject
();
inputs
[
"sOrderBy"
]
=
"StartTime desc"
;
inputs
[
"StartTime"
]
=
StartTime
;
inputs
[
"EndTime"
]
=
EndTime
;
inputs
[
"Status"
]
=
0
;
inputs
[
"Name"
]
=
Name
;
IEnumerable
<
Screening
>
list
=
_ScreeningService
.
GetListBy
(
inputs
);
...
...
@@ -309,6 +310,7 @@ namespace EheMall.Web.Areas.TicketMall.Controllers
List
<
Models
.
Models
.
TheaterPrice
>
priceList
=
new
List
<
Models
.
Models
.
TheaterPrice
>();
var
list
=
Helpers
.
EnumHelper
.
GetEnumList
(
typeof
(
Models
.
Enums
.
TheaterSeatTypeEnum
)).
OrderBy
(
x
=>
x
.
Value
).
ToList
();
TheaterPrice
modelPrice
=
new
TheaterPrice
();
entity
.
iMemberType
=
CurrentClient
.
MemberType
;
modelPrice
.
iMemberType
=
CurrentClient
.
MemberType
;
entity
.
OrderDetail
=
new
OrderDetail
();
entity
.
OrderDetail
.
iMemberType
=
CurrentClient
.
MemberType
;
...
...
@@ -331,7 +333,7 @@ namespace EheMall.Web.Areas.TicketMall.Controllers
{
if
(
modelPrice
.
FirstNum
<
entity
.
FirstNum
)
{
if
(!
string
.
IsNullOrWhiteSpace
(
userInfo
.
sPhone
))
{
var
msg
=
new
CheckCodeSendCommand
()
...
...
@@ -380,7 +382,7 @@ namespace EheMall.Web.Areas.TicketMall.Controllers
if
(
modelPrice
.
ParticularlyNum
<
entity
.
ParticularlyNum
)
{
//给剧场管理人员发短信提示票售罄
if
(!
string
.
IsNullOrWhiteSpace
(
userInfo
.
sPhone
))
{
var
msg
=
new
CheckCodeSendCommand
()
...
...
@@ -428,7 +430,7 @@ namespace EheMall.Web.Areas.TicketMall.Controllers
if
(
modelPrice
.
ScondNum
<
entity
.
ScondNum
)
{
//给剧场管理人员发短信提示票售罄
if
(!
string
.
IsNullOrWhiteSpace
(
userInfo
.
sPhone
))
{
var
msg
=
new
CheckCodeSendCommand
()
...
...
@@ -476,7 +478,7 @@ namespace EheMall.Web.Areas.TicketMall.Controllers
if
(
modelPrice
.
ThirdNum
<
entity
.
ThirdNum
)
{
//给剧场管理人员发短信提示票售罄
if
(!
string
.
IsNullOrWhiteSpace
(
userInfo
.
sPhone
))
{
var
msg
=
new
CheckCodeSendCommand
()
...
...
EheMall.Web/Areas/TicketMall/Controllers/LoginController.cs
View file @
918db1d2
...
...
@@ -12,11 +12,11 @@ namespace EheMall.Web.Areas.TicketMall.Controllers
/// <summary>
/// 用户授权判断
/// </summary>
private
IAuthenticate
_auth
{
get
;
set
;
}
//
private IAuthenticate _auth { get; set; }
//private IMemberService _MemberService { get; set; }
public
LoginController
()
{
this
.
_auth
=
EngineContext
.
Current
.
ResolveOptional
<
IAuthenticate
>();
//
this._auth = EngineContext.Current.ResolveOptional<IAuthenticate>();
this
.
_MemberService
=
EngineContext
.
Current
.
ResolveOptional
<
IMemberService
>();
}
// GET: TicketMall/Login
...
...
@@ -40,7 +40,7 @@ namespace EheMall.Web.Areas.TicketMall.Controllers
if
(
list
[
0
].
bIsDeleted
==
true
)
return
Json
(
new
{
valid
=
false
,
message
=
"用户被锁定,限制登录"
});
Session
[
"Member"
]
=
list
[
0
];
this
.
_auth
.
SignIn
(
"MemberID"
,
list
[
0
].
ID
.
ToString
(),
true
);
//
this._auth.SignIn("MemberID", list[0].ID.ToString(), true);
}
return
Json
(
new
{
valid
=
bIsExists
,
message
=
bIsExists
?
"用户登录成功"
:
"用户名或密码错误!"
});
}
...
...
EheMall.Web/Areas/TicketMall/Views/Home/BuyTickets.cshtml
View file @
918db1d2
...
...
@@ -183,7 +183,7 @@
return false;
}
}
$(this
).prop("disable", true);
$(".Ticket_sureBtn"
).prop("disable", true);
$.ajax({
type: "post",
url: "@Url.Action("SaveOrder")",
...
...
@@ -198,7 +198,7 @@
}
});
} else {
$(
this
).prop("disable", false);
$(
".Ticket_sureBtn"
).prop("disable", false);
layer.msg(data.message, { icon: 2 });
}
}
...
...
EheMall.Web/EheMall.Web.csproj.user
View file @
918db1d2
...
...
@@ -10,7 +10,7 @@
</WebStackScaffolding_LayoutPageFile>
<WebStackScaffolding_IsAsyncSelected>
False
</WebStackScaffolding_IsAsyncSelected>
<UseIISExpress>
true
</UseIISExpress>
<ProjectView>
ShowAll
Files
</ProjectView>
<ProjectView>
Project
Files
</ProjectView>
<LastActiveSolutionConfig>
Debug|Any CPU
</LastActiveSolutionConfig>
<Use64BitIISExpress
/>
<IISExpressSSLPort
/>
...
...
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