Commit 65772c55 authored by 黄奎's avatar 黄奎

座位修改

parent 045fedf9
...@@ -211,7 +211,7 @@ ...@@ -211,7 +211,7 @@
</div> </div>
<div class="seats-container" id="canSelect"> <div class="seats-container" id="canSelect">
<div data-bind="foreach:{ data: SeatData , as: 'sItem'}"> <div data-bind="foreach:{ data: SeatData , as: 'sItem'}">
<div class="row" data-bind="foreach:{data:sItem.ColumnArray,as:'childItem'},attr:{data_row_id:sItem.rowOriIndex} "> <div class="row" data-bind="foreach:{data:sItem.ColumnArray,as:'childItem'},attr:{data_row_id:sItem.rowOriIndex,data_row_type:sItem.houseType} ">
<span class="seat" data-bind="css:{'oneArea':childItem.SeatClassStr=='oneArea','twoArea':childItem.SeatClassStr=='twoArea', <span class="seat" data-bind="css:{'oneArea':childItem.SeatClassStr=='oneArea','twoArea':childItem.SeatClassStr=='twoArea',
'threeArea':childItem.SeatClassStr=='threeArea','specialArea':childItem.SeatClassStr=='specialArea','noSeat':childItem.SeatClassStr=='noSeat'}, 'threeArea':childItem.SeatClassStr=='threeArea','specialArea':childItem.SeatClassStr=='specialArea','noSeat':childItem.SeatClassStr=='noSeat'},
text:childItem.col,attr:{ data_row_id: childItem.rowIndex, data_column_id: childItem.columnIndex,data_col:childItem.col,houseType:sItem.houseType}" contenteditable="true"></span> text:childItem.col,attr:{ data_row_id: childItem.rowIndex, data_column_id: childItem.columnIndex,data_col:childItem.col,houseType:sItem.houseType}" contenteditable="true"></span>
...@@ -224,7 +224,7 @@ ...@@ -224,7 +224,7 @@
<button class="normalBtn" style="background-color:#84D8F0;" data-bind="click:function(data, event) { SetArea('B', data, event) }">设为乙区</button> <button class="normalBtn" style="background-color:#84D8F0;" data-bind="click:function(data, event) { SetArea('B', data, event) }">设为乙区</button>
<button class="normalBtn" style="background-color:#58D39D;" data-bind="click:function(data, event) { SetArea('C', data, event) }">设为丙区</button> <button class="normalBtn" style="background-color:#58D39D;" data-bind="click:function(data, event) { SetArea('C', data, event) }">设为丙区</button>
<button class="normalBtn" style="background-color:#F6B37F;" data-bind="click:function(data, event) { SetArea('D', data, event) }">设为特区</button> <button class="normalBtn" style="background-color:#F6B37F;" data-bind="click:function(data, event) { SetArea('D', data, event) }">设为特区</button>
<button class="normalBtn" data-bind="click:function(data, event) { SetArea('E', data, event),reSeat() }">设为过道</button> <button class="normalBtn" data-bind="click:function(data, event) { SetArea('E', data, event) }">设为过道</button>
</div> </div>
</div> </div>
<div class="screenDiv"> <div class="screenDiv">
...@@ -394,12 +394,19 @@ ...@@ -394,12 +394,19 @@
SeatData.replace(SeatData()); SeatData.replace(SeatData());
}; };
self.reSeat = function (dataRowIndex, isAdd) { self.reSeat = function (dataRowIndex, isAdd, houseType) {
var dataList = SeatData(); var dataList = SeatData();
var col_input = $("#col_input").val(); var col_input = $("#col_input").val();
var newObj = self.cloneTwo(SeatData()[dataRowIndex]); var newObj = self.cloneTwo(SeatData()[dataRowIndex]);
if (newObj != null && newObj.rowOriIndex) { if (newObj != null && newObj.rowOriIndex) {
var middleIndex = col_input % 2 == 1 ? parseInt(col_input / 2) + 1 : parseInt(col_input / 2); var newColCount = 0;
if (houseType == 1) {
newColCount = loucol;
}
else {
newColCount = tangcol;
}
var middleIndex = newColCount % 2 == 1 ? parseInt(newColCount / 2) + 1 : parseInt(newColCount / 2);
var flag = col_input % 2 == 1 ? true : false; var flag = col_input % 2 == 1 ? true : false;
var rightArray = []; var rightArray = [];
var leftArray = []; var leftArray = [];
...@@ -443,7 +450,6 @@ ...@@ -443,7 +450,6 @@
} }
} }
} }
var leftIndex = 1; var leftIndex = 1;
var leftNewArray = []; var leftNewArray = [];
for (var i = leftArray.length - 1; i >= 0; i--) { for (var i = leftArray.length - 1; i >= 0; i--) {
...@@ -469,37 +475,67 @@ ...@@ -469,37 +475,67 @@
} }
var newArray = leftNewArray.reverse(); var newArray = leftNewArray.reverse();
var resultArray = newArray.concat(rightNewArray); var resultArray = newArray.concat(rightNewArray);
this.console.log("resultArray", resultArray);
for (var k = 0; k < newObj.ColumnArray.length; k++) { for (var k = 0; k < newObj.ColumnArray.length; k++) {
newObj.ColumnArray[k].col = resultArray[k]; newObj.ColumnArray[k].col = resultArray[k];
} }
SeatData.replace(SeatData()[dataRowIndex], newObj);
//隐藏 //隐藏
if (newObj.noLenth == newObj.ColumnArray.length && isAdd == 1) { if (newObj.noLenth == newObj.ColumnArray.length && isAdd == 1) {
newObj.rowIndex = ""; newObj.rowIndex = "";
SeatData.replace(SeatData()[dataRowIndex], newObj); SeatData.replace(SeatData()[dataRowIndex], newObj);
var subindex = dataRowIndex; var subindex = dataRowIndex;
for (var i = dataRowIndex; i < SeatData().length; i++) { //楼厢
var tempData = self.cloneTwo(SeatData()[i]); if (houseType == 1) {
if (tempData.rowIndex != "") { for (var i = dataRowIndex; i < lourow; i++) {
tempData.rowIndex = (subindex + "排"); var tempData = self.cloneTwo(SeatData()[i]);
SeatData.replace(SeatData()[i], tempData); if (tempData.rowIndex != "") {
subindex++; tempData.rowIndex = (subindex + "排");
SeatData.replace(SeatData()[i], tempData);
subindex++;
}
}
}
//堂厢
else if (houseType == 3) {
for (var i = dataRowIndex; i < (tangrow + lourow); i++) {
var tempData = self.cloneTwo(SeatData()[i]);
if (tempData.rowIndex != "") {
tempData.rowIndex = (subindex - lourow) + "排";
SeatData.replace(SeatData()[i], tempData);
subindex++;
}
} }
} }
} }
else if (isAdd == 0 && newObj.rowIndex == "") {
if (isAdd == 0 && newObj.rowIndex=="") { newObj.rowIndex = (dataRowIndex + 1) + "排";
newObj.rowIndex = (dataRowIndex + 1) + "排";
SeatData.replace(SeatData()[dataRowIndex], newObj); SeatData.replace(SeatData()[dataRowIndex], newObj);
for (var i = dataRowIndex; i < SeatData().length; i++) { if (houseType == 1) {
var tempData = self.cloneTwo(SeatData()[i]); for (var i = dataRowIndex + 1; i < lourow; i++) {
if (tempData.rowIndex != "") { var tempData = self.cloneTwo(SeatData()[i]);
var newIndex = i + 1; if (tempData.rowIndex != "") {
tempData.rowIndex = newIndex + "排"; var newIndex = i + 1;
SeatData.replace(SeatData()[i], tempData); tempData.rowIndex = newIndex + "排";
SeatData.replace(SeatData()[i], tempData);
}
}
}
else if (houseType == 3) {
for (var i = dataRowIndex; i < (tangrow + lourow); i++) {
var tempData = self.cloneTwo(SeatData()[i]);
if (tempData.rowIndex != "") {
var newIndex = i + 1;
tempData.rowIndex = (newIndex - lourow) + "排";
SeatData.replace(SeatData()[i], tempData);
}
} }
} }
}
else {
SeatData.replace(SeatData()[dataRowIndex], newObj);
} }
} }
}; };
...@@ -565,6 +601,7 @@ ...@@ -565,6 +601,7 @@
self.SetArea = function (type) { self.SetArea = function (type) {
$(".seats-container").find(".row").each(function () { $(".seats-container").find(".row").each(function () {
var parentRowIndex = $(this).attr("data_row_id"); var parentRowIndex = $(this).attr("data_row_id");
var parentHouseType = $(this).attr("data_row_type");
var rowObj = $(this); var rowObj = $(this);
//判断是否有选中的座位 //判断是否有选中的座位
if ($(this).find(".seled").length > 0) { if ($(this).find(".seled").length > 0) {
...@@ -613,7 +650,7 @@ ...@@ -613,7 +650,7 @@
}); });
var newRowIndex = parentRowIndex - 1; var newRowIndex = parentRowIndex - 1;
SeatData()[newRowIndex].noLenth = $(rowObj).find(".noSeat").length; SeatData()[newRowIndex].noLenth = $(rowObj).find(".noSeat").length;
self.reSeat(newRowIndex, isAdd); self.reSeat(newRowIndex, isAdd, parentHouseType);
if (SeatData()[newRowIndex].noLenth > 0 && isAdd==1) { if (SeatData()[newRowIndex].noLenth > 0 && isAdd==1) {
$(".row_input").each(function (x) { $(".row_input").each(function (x) {
if ($(this).val() == '') { if ($(this).val() == '') {
......
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