jufubao-movie 1.0.67-beta2 → 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jufubao-movie",
3
- "version": "1.0.67-beta2",
3
+ "version": "1.0.67-beta3",
4
4
  "private": false,
5
5
  "description": "聚福宝在线选座业务组件插件包",
6
6
  "main": "index.js",
@@ -536,7 +536,7 @@
536
536
 
537
537
  //分区排期
538
538
  isAreaPrice: false,
539
- ver:5,
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
 
@@ -776,7 +776,7 @@
776
776
  cell.isLove = 'r';
777
777
  }
778
778
 
779
- //可选 or 不可购买座位状态(普通座位)
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'] = 0;
1168
+ item['type'] = 3;
1167
1169
  let lovelyseat = row[posCol - 1];
1168
- lovelyseat['type'] = 3;
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
- LL: item,
1190
- LR: row[posCol + 1],
1191
- select: this.seatSelected
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
- LL: row[posCol - 1],
1202
- LR: item,
1203
- select: this.seatSelected
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
  }