jufubao-movie 1.0.42 → 1.0.43
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
|
@@ -182,14 +182,16 @@
|
|
|
182
182
|
backgroundImage:'url('+ `${areaLove}${seat.isLove}-${seat.typeStatus}` +'.png?ver='+ ver +')'
|
|
183
183
|
}"></view>
|
|
184
184
|
</template>
|
|
185
|
-
|
|
186
185
|
<template v-else>
|
|
187
186
|
<view v-if="seat.typeStatus === 'use'" class='xd-online-seat__bg' :style="{
|
|
188
187
|
backgroundImage:'url('+ `${areaOhter}${seat.typeStatus}-${areaPriceIndex[seat.price]}` +'.png?ver='+ ver +')'
|
|
189
188
|
}"></view>
|
|
190
|
-
<
|
|
191
|
-
|
|
192
|
-
|
|
189
|
+
<template v-else>
|
|
190
|
+
<view v-if="seat.typeStatus" class='xd-online-seat__bg' :style="{
|
|
191
|
+
backgroundImage:'url('+ `${areaOhter}${seat.typeStatus}` +'.png?ver='+ ver +')'
|
|
192
|
+
}"></view>
|
|
193
|
+
<view v-else class='xd-online-seat__bg'></view>
|
|
194
|
+
</template>
|
|
193
195
|
</template>
|
|
194
196
|
</template>
|
|
195
197
|
<!--普通排期-->
|
|
@@ -197,9 +199,12 @@
|
|
|
197
199
|
<view class="xd-online-seat__bg" v-if="seat.isLove" :style="{
|
|
198
200
|
backgroundImage:'url('+ `${nomarlLove}${seat.isLove}-${seat.typeStatus}` +'.png?ver='+ ver +')'
|
|
199
201
|
}"></view>
|
|
200
|
-
<
|
|
201
|
-
|
|
202
|
-
|
|
202
|
+
<template v-else>
|
|
203
|
+
<view v-if="seat.typeStatus" class="xd-online-seat__bg" :style="{
|
|
204
|
+
backgroundImage:'url('+ nomarlOhter+seat.typeStatus +'.png?ver='+ver+')'
|
|
205
|
+
}"></view>
|
|
206
|
+
<view v-else class='xd-online-seat__bg'></view>
|
|
207
|
+
</template>
|
|
203
208
|
</template>
|
|
204
209
|
</view>
|
|
205
210
|
</view>
|
|
@@ -376,14 +381,17 @@
|
|
|
376
381
|
backgroundImage:'url('+ `${areaLove}${seat.isLove}-${seat.typeStatus}` +'.png?ver='+ ver +')'
|
|
377
382
|
}"></view>
|
|
378
383
|
</template>
|
|
379
|
-
|
|
380
384
|
<template v-else>
|
|
381
385
|
<view v-if="seat.typeStatus === 'use'" class='xd-online-seat__bg' :style="{
|
|
382
386
|
backgroundImage:'url('+ `${areaOhter}${seat.typeStatus}-${areaPriceIndex[seat.price]}` +'.png?ver='+ ver +')'
|
|
383
387
|
}"></view>
|
|
384
|
-
<
|
|
385
|
-
|
|
386
|
-
|
|
388
|
+
<template v-else>
|
|
389
|
+
<view v-if="seat.typeStatus" class='xd-online-seat__bg' :style="{
|
|
390
|
+
backgroundImage:'url('+ `${areaOhter}${seat.typeStatus}` +'.png?ver='+ ver +')'
|
|
391
|
+
}"></view>
|
|
392
|
+
<view v-else class='xd-online-seat__bg'></view>
|
|
393
|
+
</template>
|
|
394
|
+
|
|
387
395
|
</template>
|
|
388
396
|
</template>
|
|
389
397
|
<!--普通排期-->
|
|
@@ -391,9 +399,12 @@
|
|
|
391
399
|
<view class="xd-online-seat__bg" v-if="seat.isLove" :style="{
|
|
392
400
|
backgroundImage:'url('+ `${nomarlLove}${seat.isLove}-${seat.typeStatus}` +'.png?ver='+ ver +')'
|
|
393
401
|
}"></view>
|
|
394
|
-
<
|
|
395
|
-
|
|
396
|
-
|
|
402
|
+
<template v-else>
|
|
403
|
+
<view v-if="seat.typeStatus" class="xd-online-seat__bg" :style="{
|
|
404
|
+
backgroundImage:'url('+ nomarlOhter+seat.typeStatus +'.png?ver='+ver+')'
|
|
405
|
+
}"></view>
|
|
406
|
+
<view v-else class='xd-online-seat__bg'></view>
|
|
407
|
+
</template>
|
|
397
408
|
</template>
|
|
398
409
|
</view>
|
|
399
410
|
</view>
|
|
@@ -703,6 +714,9 @@
|
|
|
703
714
|
* @description 初始化座位数据
|
|
704
715
|
*/
|
|
705
716
|
initData() {
|
|
717
|
+
//this.seatSourceList
|
|
718
|
+
|
|
719
|
+
|
|
706
720
|
/**对象转化为数组**/
|
|
707
721
|
if (helper.checkVarType(this.seatSourceList) === 'object') {
|
|
708
722
|
let temp = [];
|