Commit 9b32e1a0 authored by zhengke's avatar zhengke

1

parent a1e1b8f9
...@@ -51,7 +51,7 @@ ...@@ -51,7 +51,7 @@
</div> </div>
<div class="centerTicket"> <div class="centerTicket">
<div class="rightCenter">已选座位</div> <div class="rightCenter">已选座位</div>
<div class="TicketContent seatCked"> <div class="TicketSaleContent seatCked">
</div> </div>
</div> </div>
...@@ -107,7 +107,7 @@ ...@@ -107,7 +107,7 @@
} }
var temp = ''; var temp = '';
for (var i = 0; i < dataList.length; i++) { for (var i = 0; i < dataList.length; i++) {
temp += '<div class="row">'; temp += '<div class="rowList">';
for (var j = 0; j < dataList[i].ColumnArray.length; j++) { for (var j = 0; j < dataList[i].ColumnArray.length; j++) {
temp += `<span class="${dataList[i].ColumnArray[j].SeatClassStr}" data-col="${dataList[i].ColumnArray[j].columnIndex}" temp += `<span class="${dataList[i].ColumnArray[j].SeatClassStr}" data-col="${dataList[i].ColumnArray[j].columnIndex}"
data-row="${dataList[i].ColumnArray[j].rowIndex}"></span>` data-row="${dataList[i].ColumnArray[j].rowIndex}"></span>`
...@@ -129,7 +129,7 @@ ...@@ -129,7 +129,7 @@
if ($(this).hasClass('selected')) { if ($(this).hasClass('selected')) {
var rowIndex = $(this).attr("data-row"); var rowIndex = $(this).attr("data-row");
var colIndex = $(this).attr("data-col"); var colIndex = $(this).attr("data-col");
temp += '<div class="TicketList">' + temp += '<div class="TicketSaleList">' +
'<span class="TcLeft">' + rowIndex + '排' + colIndex + '号</span>' + '<span class="TcLeft">' + rowIndex + '排' + colIndex + '号</span>' +
'<span style="font-weight:bold;">¥179</span>' + '<span style="font-weight:bold;">¥179</span>' +
'</div>' '</div>'
......
...@@ -23,7 +23,6 @@ ...@@ -23,7 +23,6 @@
.seatType { .seatType {
width: 100%; width: 100%;
height: 60px;
text-align: left; text-align: left;
margin: 20px 0; margin: 20px 0;
} }
...@@ -42,7 +41,6 @@ ...@@ -42,7 +41,6 @@
position: absolute; position: absolute;
display: inline-block; display: inline-block;
width: 60px; width: 60px;
top: -10px;
margin-left: 5px; margin-left: 5px;
} }
...@@ -94,13 +92,13 @@ ...@@ -94,13 +92,13 @@
text-align: center; text-align: center;
} }
.TicketContent { .TicketSaleContent {
float: left; float: left;
width: 300px; width: 425px;
margin-left: 20px; margin-left: 20px;
} }
.TicketList { .TicketSaleList {
width: 120px; width: 120px;
height: 34px; height: 34px;
font-size: 12px; font-size: 12px;
...@@ -161,18 +159,17 @@ ...@@ -161,18 +159,17 @@
float: left; float: left;
width: 400px; width: 400px;
height: 130px; height: 130px;
margin: 20px 130px 20px 20px; margin: 20px 60px 20px 20px;
} }
.centerTicket { .centerTicket {
float: left; float: left;
width: 380px;
margin-top: 20px; margin-top: 20px;
} }
.chooseBtn { .chooseBtn {
float: left; float: left;
margin: 20px 0 0 100px; margin: 20px 0 0 60px;
} }
.btnContent { .btnContent {
......
...@@ -323,6 +323,7 @@ ...@@ -323,6 +323,7 @@
<Content Include="Areas\TicketMall\Content\css\jquery.ui.css" /> <Content Include="Areas\TicketMall\Content\css\jquery.ui.css" />
<Content Include="Areas\TicketMall\Content\css\main.css" /> <Content Include="Areas\TicketMall\Content\css\main.css" />
<Content Include="Areas\TicketMall\Content\css\public.css" /> <Content Include="Areas\TicketMall\Content\css\public.css" />
<Content Include="Areas\TicketMall\Content\css\SaleTicket.css" />
<Content Include="Areas\TicketMall\Content\js\jquery.flexslider-min.js" /> <Content Include="Areas\TicketMall\Content\js\jquery.flexslider-min.js" />
<Content Include="Areas\TicketMall\Content\js\jquery.min.js" /> <Content Include="Areas\TicketMall\Content\js\jquery.min.js" />
<Content Include="Areas\TicketMall\Content\js\jquery.ui.js" /> <Content Include="Areas\TicketMall\Content\js\jquery.ui.js" />
......
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
<WebStackScaffolding_LayoutPageFile>~/Areas/TicketMall/Views/Shared/_Layout.cshtml</WebStackScaffolding_LayoutPageFile> <WebStackScaffolding_LayoutPageFile>~/Areas/TicketMall/Views/Shared/_Layout.cshtml</WebStackScaffolding_LayoutPageFile>
<WebStackScaffolding_IsAsyncSelected>False</WebStackScaffolding_IsAsyncSelected> <WebStackScaffolding_IsAsyncSelected>False</WebStackScaffolding_IsAsyncSelected>
<UseIISExpress>true</UseIISExpress> <UseIISExpress>true</UseIISExpress>
<ProjectView>ProjectFiles</ProjectView> <ProjectView>ShowAllFiles</ProjectView>
<LastActiveSolutionConfig>Debug|Any CPU</LastActiveSolutionConfig> <LastActiveSolutionConfig>Debug|Any CPU</LastActiveSolutionConfig>
<Use64BitIISExpress /> <Use64BitIISExpress />
<IISExpressSSLPort /> <IISExpressSSLPort />
......
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