jufubao-movie 1.0.67-beta1 → 1.0.67-beta2

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-beta1",
3
+ "version": "1.0.67-beta2",
4
4
  "private": false,
5
5
  "description": "聚福宝在线选座业务组件插件包",
6
6
  "main": "index.js",
@@ -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 === 'false'?'sold':'use'
766
+ cell.typeStatus = ['false','falsell'].includes(cell.status)?'sold':'use'
767
767
  cell.isLove = 'l';
768
768
  this.seatTotalNumber++;
769
769
  }
@@ -772,7 +772,7 @@
772
772
  if (cell.type === 'LR') {
773
773
  cell.type = 3;
774
774
  cell.lovely = 'LR';
775
- cell.typeStatus = cell.status === 'false'?'sold':'use'
775
+ cell.typeStatus = ['false','falselr'].includes(cell.status)?'sold':'use'
776
776
  cell.isLove = 'r';
777
777
  }
778
778