jufubao-movie 1.0.67-beta1 → 1.0.67-beta3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -536,7 +536,7 @@
|
|
|
536
536
|
|
|
537
537
|
//分区排期
|
|
538
538
|
isAreaPrice: false,
|
|
539
|
-
ver:
|
|
539
|
+
ver:'12',
|
|
540
540
|
areaPriceIndex:{},
|
|
541
541
|
preloadIcon:['l-r-selected','l-l-selected', 'selected', 'sold', 'l-r-sold','l-l-sold'],
|
|
542
542
|
|
|
@@ -763,7 +763,7 @@
|
|
|
763
763
|
if (cell.type === 'LL') {
|
|
764
764
|
cell.type = 3;
|
|
765
765
|
cell.lovely = 'LL'; //记录左情侣座
|
|
766
|
-
cell.typeStatus = cell.status
|
|
766
|
+
cell.typeStatus = ['false','falsell'].includes(cell.status)?'sold':'use'
|
|
767
767
|
cell.isLove = 'l';
|
|
768
768
|
this.seatTotalNumber++;
|
|
769
769
|
}
|
|
@@ -772,11 +772,11 @@
|
|
|
772
772
|
if (cell.type === 'LR') {
|
|
773
773
|
cell.type = 3;
|
|
774
774
|
cell.lovely = 'LR';
|
|
775
|
-
cell.typeStatus = cell.status
|
|
775
|
+
cell.typeStatus = ['false','falselr'].includes(cell.status)?'sold':'use'
|
|
776
776
|
cell.isLove = 'r';
|
|
777
777
|
}
|
|
778
778
|
|
|
779
|
-
|
|
779
|
+
//(普通座位)
|
|
780
780
|
if (cell.type === '0') {
|
|
781
781
|
//status false: 不可以用 true:可用
|
|
782
782
|
if(cell.status === 'false') {
|
|
@@ -791,6 +791,7 @@
|
|
|
791
791
|
this.seatTotalNumber++;
|
|
792
792
|
}
|
|
793
793
|
|
|
794
|
+
//已选中
|
|
794
795
|
if(cell.type === '2') {
|
|
795
796
|
cell.type = 2;
|
|
796
797
|
cell.typeStatus = 'selected'
|
|
@@ -905,6 +906,7 @@
|
|
|
905
906
|
this.computedUnselectedTotalNumber();
|
|
906
907
|
return
|
|
907
908
|
}
|
|
909
|
+
|
|
908
910
|
let {id} = item;
|
|
909
911
|
let index = 0;
|
|
910
912
|
this.seatSelected.map((it, i) => {
|
|
@@ -1163,9 +1165,9 @@
|
|
|
1163
1165
|
|
|
1164
1166
|
//右情侣取消
|
|
1165
1167
|
if (item['lovely'] === 'LR') {
|
|
1166
|
-
item['type'] =
|
|
1168
|
+
item['type'] = 3;
|
|
1167
1169
|
let lovelyseat = row[posCol - 1];
|
|
1168
|
-
lovelyseat['type'] =
|
|
1170
|
+
lovelyseat['type'] = 0;
|
|
1169
1171
|
lovelyseat['typeStatus'] = 'use';
|
|
1170
1172
|
this.selectSeat(lovelyseat, '-');
|
|
1171
1173
|
}
|
|
@@ -1185,11 +1187,11 @@
|
|
|
1185
1187
|
row[posCol + 1]['type'] = 2;
|
|
1186
1188
|
row[posCol + 1]['typeStatus'] = 'selected';
|
|
1187
1189
|
this.selectSeat(row[posCol + 1], '+');
|
|
1188
|
-
this.$xdLog.setARMSInfo({
|
|
1189
|
-
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
}, 'movie_select_lovely_LL');
|
|
1190
|
+
// this.$xdLog.setARMSInfo({
|
|
1191
|
+
// LL: item,
|
|
1192
|
+
// LR: row[posCol + 1],
|
|
1193
|
+
// select: this.seatSelected
|
|
1194
|
+
// }, 'movie_select_lovely_LL');
|
|
1193
1195
|
}
|
|
1194
1196
|
|
|
1195
1197
|
//选中右情侣
|
|
@@ -1197,11 +1199,11 @@
|
|
|
1197
1199
|
row[posCol - 1]['type'] = 2;
|
|
1198
1200
|
row[posCol - 1]['typeStatus'] = 'selected';
|
|
1199
1201
|
this.selectSeat(row[posCol - 1], '+');
|
|
1200
|
-
this.$xdLog.setARMSInfo({
|
|
1201
|
-
|
|
1202
|
-
|
|
1203
|
-
|
|
1204
|
-
}, 'movie_select_lovely_LR');
|
|
1202
|
+
// this.$xdLog.setARMSInfo({
|
|
1203
|
+
// LL: row[posCol - 1],
|
|
1204
|
+
// LR: item,
|
|
1205
|
+
// select: this.seatSelected
|
|
1206
|
+
// }, 'movie_select_lovely_LR');
|
|
1205
1207
|
}
|
|
1206
1208
|
|
|
1207
1209
|
}
|