Commit c80da369 authored by 黄奎's avatar 黄奎

座位图修改

parent b6e85fd7
......@@ -556,7 +556,7 @@
for (var i = dataRowIndex; i < (tangrow + lourow); i++) {
var tempData = self.cloneTwo(SeatData()[i]);
if (tempData.rowIndex != "") {
var subindex = self.CreateNum(i, 1);
var subindex = self.CreateNum(i, 3);
tempData.rowIndex = (subindex - lourow) + "排";
SeatData.replace(SeatData()[i], tempData);
}
......@@ -570,7 +570,7 @@
for (var i = dataRowIndex + 1; i < lourow; i++) {
var tempData = self.cloneTwo(SeatData()[i]);
if (tempData.rowIndex != "") {
var newIndex = self.CreateNum(i, 3);
var newIndex = self.CreateNum(i, 1);
tempData.rowIndex = newIndex + "排";
SeatData.replace(SeatData()[i], tempData);
}
......@@ -599,6 +599,7 @@
self.CreateNum = function (index, type) {
var num = 0;
var dataList = SeatData();
if (type == 1) {
for (var i = 0; i < dataList.length; i++) {
if (dataList[i].houseType == 1) {
......
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