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
|
@@ -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,7 +772,7 @@
|
|
|
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
|
|