jufubao-movie 1.0.55 → 1.0.56-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.55",
3
+ "version": "1.0.56-beta2",
4
4
  "private": false,
5
5
  "description": "聚福宝在线选座业务组件插件包",
6
6
  "main": "index.js",
@@ -156,5 +156,17 @@ module.exports = [
156
156
  },
157
157
  isConsole: true,
158
158
  disabled: true
159
+ },
160
+ {
161
+ mapFnName: "getVipList",
162
+ title: "会员中心 - 会员卡列表",
163
+ path: "/member/v1/:namespace/vip-card",
164
+ isRule: false,
165
+ params: {
166
+ namespace: ['业务线', 'String', true],
167
+ is_show_exchange_code: ['是否展示 兑换码 ', 'Y/N,默认N', false],
168
+ },
169
+ isConsole: true,
170
+ disabled: true
159
171
  }
160
172
  ];
@@ -92,16 +92,16 @@
92
92
  </view>
93
93
  </view>
94
94
  <view class="jfb-movie-confirm__body-movie-total-right">
95
- {{order_info.seat_number}}
95
+ <view>共{{order_info.seat_number}}张:</view>
96
96
  <template v-if="is_not_show_price !== 'Y'">
97
- :
98
- <xd-unit
97
+ <!-- <xd-unit
99
98
  :color="mainColor"
100
99
  :isOld="false"
101
100
  :iocnSize="0.32"
102
101
  :fontSize="24"
103
102
  :price="order_info.total_price"
104
- ></xd-unit>
103
+ ></xd-unit> -->
104
+ <CusPrice :isVip="is_plus_site" :showPrice="order_info.show_prices" type="order" ></CusPrice>
105
105
  </template>
106
106
 
107
107
  </view>
@@ -132,6 +132,32 @@
132
132
  <xd-content-xss style="color: #999" :html="notice"></xd-content-xss>
133
133
  </view>
134
134
  </view>
135
+
136
+ <view v-if="is_show_vip_card_list==='Y'" class="vip_list_wrap">
137
+ <cus-vip-list :list="vipCardList"
138
+ :vip_card_id="vip_card_id"
139
+ :plus_saving_money="plus_saving_money"
140
+ @choseVipCard="handleChoseVipCard"></cus-vip-list>
141
+ </view>
142
+
143
+ <view v-if="isShowPlusSavingMoney" class="vip_pay_info">
144
+ <view class="good_vip_price">
145
+ <xd-list-item label="商品价格" paddingLR="40rpx" size="small" showBottom>
146
+ <!-- <view style="color: #999999;">145.00</view> -->
147
+ <xd-unit :price="origin_total_price" :isOld="false" :fontSize="24" :iconSize="0.3"></xd-unit>
148
+ </xd-list-item>
149
+ <xd-list-item label="PLUS专项立减" size="small" paddingLR="40rpx" >
150
+ <view slot="label" style="color: #86541E;">PLUS专项立减</view>
151
+ <!-- <view style="color: #FF7070;">-5.00</view> -->
152
+ <xd-unit :price="plus_saving_money" :isOld="false" :fontSize="24" :iconSize="0.3"></xd-unit>
153
+ </xd-list-item>
154
+ </view>
155
+ <!-- <view class="vip_remain">
156
+ <xd-list-item label="账户余额" size="small" paddingLR="40rpx" showRight>
157
+ <view style="color: #999999;">30.00</view>
158
+ </xd-list-item>
159
+ </view> -->
160
+ </view>
135
161
 
136
162
  <view v-if="otherPayMethod.length" class="jfb-movie-confirm__body-card">
137
163
  <template v-for="item in otherPayMethod">
@@ -287,6 +313,8 @@
287
313
  import extsMixins from "@/mixins/extsMixins"
288
314
  import {getContainerPropsValue, baseJsDateToTime,getParentsStyle} from "@/utils/xd.base";
289
315
  import {mapState} from 'vuex';
316
+ import CusPrice from '@/components/CusPrice/CusPrice'
317
+ import CusVipList from "@/components/CusVipList/CusVipList"
290
318
 
291
319
  // #ifdef H5
292
320
  import cookie from "@/common/cookie";
@@ -305,11 +333,14 @@
305
333
  XdListItem,
306
334
  XdCardPayChose,
307
335
  XdWalletChose,
308
- CusCouponChose
336
+ CusCouponChose,
337
+ CusPrice,
338
+ CusVipList
309
339
  },
310
340
  mixins: [componentsMixins,extsMixins,JfbMovieConfirmMixin],
311
341
  data() {
312
342
  return {
343
+ isVip: false,
313
344
  times: null,
314
345
  timeMsg: '',
315
346
  timer: null,
@@ -328,6 +359,12 @@
328
359
  is_first_use_card: "", //是否优先使用卡券
329
360
  is_use_jfb_pay: "", //是否使用聚福宝支付
330
361
  res_total_price: 0,
362
+ origin_total_price: 0,
363
+
364
+ is_show_vip_card_list: "",
365
+ vipCardList: [],
366
+ vip_card_id: 0,
367
+ plus_saving_money: 0,
331
368
 
332
369
  cardShow: false,
333
370
 
@@ -362,6 +399,8 @@
362
399
  couponBtnTextStyle: {}, //优惠券包登录按钮文字背景色设置
363
400
  couponUseBtnPadding: {},
364
401
  couponImageUrl: "",
402
+ is_plus_site: false,
403
+
365
404
  }
366
405
  },
367
406
  watch: {
@@ -394,6 +433,11 @@
394
433
  return true; //都开启补差
395
434
  // return this.otherPayMethod.find(item => item.method === 'third')
396
435
  },
436
+ //是否展示plus立减
437
+ isShowPlusSavingMoney(){
438
+ if(this.is_show_vip_card_list === 'Y') return this.vip_card_id;
439
+ else return (this.isVip && this.plus_saving_money)
440
+ },
397
441
  //订单实际需要支付金额(减去各项已选,票券、钱包)
398
442
  orderNeedPayPrice(){
399
443
  if(!this.order_info) return 0;
@@ -419,6 +463,8 @@
419
463
  created() {
420
464
  this.init(this.container);
421
465
  this.xnamespace =this.projectAttr.business_code;
466
+ this.isVip = this.getTokenForKey('user_level') === 'VIP';
467
+ this.is_plus_site = this.projectAttr.headers['X-Site-Group']==="vip";
422
468
  // #ifdef H5
423
469
  if (!this.$configProject.isPreview){
424
470
  jfbRootExec("getH5WxAuthorize", {
@@ -461,10 +507,14 @@
461
507
  this.tempOrderId = options.order_id;
462
508
  this.validImageAPIUrl = this.brandInfo['api_host'] + '/common/v1/valid_code/image/show'
463
509
  console.log(this, 'confirm this');
510
+ this.p_getConfirmOrder();
511
+ },
512
+ p_getConfirmOrder(){
464
513
  jfbRootExec("movieConfirmOrder", {
465
514
  vm: this,
466
515
  data: {
467
516
  temp_order_id: this.tempOrderId,
517
+ vip_card_id: this.vip_card_id
468
518
  }
469
519
  })
470
520
  .then(res => {
@@ -474,6 +524,9 @@
474
524
  this.is_first_use_card = res.is_first_use_card;
475
525
  this.is_use_jfb_pay = res.is_use_jfb_pay;
476
526
  this.res_total_price = res.total_price;
527
+ this.is_show_vip_card_list = res.is_show_vip_card_list;
528
+ this.plus_saving_money = res.plus_saving_money;
529
+ this.origin_total_price = res.origin_total_price;
477
530
 
478
531
  res.show_time = baseJsDateToTime(res.show_time)
479
532
  res.seat_number = JSON.parse(res.seat_name).length;
@@ -501,7 +554,17 @@
501
554
  res.pay_methods.push('coupon')
502
555
  this.p_getPayMethod(res.pay_methods);
503
556
  }
504
-
557
+ if(res.vip_card_item){
558
+ if(res.vip_card_item.is_can_buy === 'Y'){
559
+ this.vip_card_id = res.vip_card_item.vip_card_id;
560
+ }else if(res.vip_card_item.is_can_buy === 'N'){
561
+ this.vip_card_id = '';
562
+ this.$xdAlert({content: res.vip_card_item.error_message});
563
+ }
564
+ }
565
+ if(this.is_show_vip_card_list === 'Y' && !this.vipCardList.length){
566
+ this.p_getVipList();
567
+ }
505
568
  })
506
569
  .catch(err => {
507
570
  this.$xdHideLoading();
@@ -510,6 +573,10 @@
510
573
  // }
511
574
  });
512
575
  },
576
+ handleChoseVipCard(vip_card_id){
577
+ this.vip_card_id = vip_card_id;
578
+ this.p_getConfirmOrder();
579
+ },
513
580
  //only选择卡片
514
581
  toChoseCard(){
515
582
  this.showCardPayChose = true;
@@ -524,6 +591,16 @@
524
591
  toChoseWallet(){
525
592
  this.showWalletChose = true;
526
593
  },
594
+ p_getVipList(){
595
+ jfbRootExec("getVipList", {
596
+ vm: this,
597
+ data: {
598
+ namespace: 'movie',
599
+ }
600
+ }).then(res => {
601
+ this.vipCardList = res.list;
602
+ })
603
+ },
527
604
  handleWalletChose({walletPayPrice, needPayPrice, selectedWalletList}){
528
605
  this.choseWallet = {
529
606
  walletPayPrice,
@@ -758,6 +835,7 @@
758
835
  ...options,
759
836
  notify_provider_id: this.projectAttr.notify_provider_id,
760
837
  buy_product: {cart_order_id: this.tempOrderId},
838
+ vip_card_id: this.vip_card_id
761
839
  }
762
840
  }).then(res => {
763
841
  if(res.pay_url){
@@ -969,6 +1047,23 @@
969
1047
  position: relative;
970
1048
  z-index: 110;
971
1049
  &__body {
1050
+ .vip_list_wrap{
1051
+ margin: 0 24rpx 24rpx;
1052
+ border-radius: 20rpx;
1053
+ overflow: hidden;
1054
+ }
1055
+ .vip_pay_info{
1056
+ margin: 0 24rpx 24rpx;
1057
+ .good_vip_price{
1058
+ background-color: #FFFFFF;
1059
+ border-radius: 20rpx;
1060
+ }
1061
+ .vip_remain{
1062
+ background-color: #FFFFFF;
1063
+ border-radius: 20rpx;
1064
+ margin-top: 24rpx;
1065
+ }
1066
+ }
972
1067
  &-title {
973
1068
  display: flex;
974
1069
  justify-content: flex-start;
@@ -1053,6 +1148,7 @@
1053
1148
  display: flex;
1054
1149
  flex-direction: column;
1055
1150
  justify-content: space-around;
1151
+ align-items: flex-start;
1056
1152
  height: unit(300, rpx);
1057
1153
  margin-left: unit(40, rpx);
1058
1154
 
@@ -1102,7 +1198,7 @@
1102
1198
  border-top: unit(2, rpx) solid #F6F6F6;
1103
1199
  display: flex;
1104
1200
  justify-content: space-between;
1105
- align-items: center;
1201
+ align-items: flex-start;
1106
1202
  font-size: unit(24, rpx);
1107
1203
  margin-top: unit(24, rpx);
1108
1204
 
@@ -1128,10 +1224,13 @@
1128
1224
  }
1129
1225
 
1130
1226
  &-right {
1227
+ &>view:first-child{
1228
+ margin-right: 10rpx;
1229
+ }
1131
1230
  color: #999999;
1132
1231
  flex: 1;
1133
1232
  display: flex;
1134
- align-items: center;
1233
+ align-items: baseline;
1135
1234
  justify-content: flex-end;
1136
1235
  margin-top: unit(20, rpx);
1137
1236
  }
@@ -16,7 +16,19 @@ module.exports = {
16
16
  "seat_name": "[\"5\排4\列\",\"5\排5\列\"]",
17
17
  "remark": "9.6",
18
18
  "count_down": "581",
19
- "request_id": "a069a3183348d7f2"
19
+ "request_id": "a069a3183348d7f2",
20
+ show_prices: [
21
+ {
22
+ "p": 10000,
23
+ "n": "PLUS价",
24
+ "t": "S"
25
+ },
26
+ {
27
+ "p": 12000,
28
+ "n": "原价",
29
+ "t": "U"
30
+ }
31
+ ],
20
32
  },
21
33
  movieCardList: {
22
34
  "list": [
@@ -145,4 +157,5 @@ module.exports = {
145
157
  },
146
158
  getPayMethod: {"list":[{"method":"card","show_name":"使用票券1","icon":"icon_4"},{"method":"wallet","show_name":"使用我的元宝","icon":"icon_1"},{"method":"score","show_name":"使用积分","icon":"icon_3"}],"request_id":"3746368129d64b96"},
147
159
  getUserWallet: {"show_name":"我的元宝","icon":"icon_1","total_amount":179989,"list":[{"wallet_type":"UB","wallet_name":"账户3","wallet_virtual_number":"1000000000000244","amount":79789,"business_codes":"cake,v-RcA8Mv-Gpd96_Y_mjIf","business_codes_name":"蛋糕(勿改),商城","wallet_rule":"<p>UB使用规则说明<\/p>\n<p>123456<\/p>"},{"wallet_type":"UC","wallet_name":"账户1","wallet_virtual_number":"1000000000000245","amount":100200,"business_codes":"mall,movie,v-RcA8Mv-Gpd96_Y_mjIf,cake","business_codes_name":"商城,电影(勿改),商城,蛋糕(勿改)","wallet_rule":"<p>UC使用规则说明<\/p>\n<p>123<\/p>\n<p>阿达我娃的啊我啊我啊我啊我<\/p>\n<p><span style=\"color: #ff0000;\">阿我打我爱我的啊我啊我<\/span><\/p>"}],"request_id":"823e7aa78fa32fa9"},
160
+ getVipList:{"total_size":3,"next_page_token":"","list":[{"vip_card_id":3,"product_id":60038520,"product_name":"体验卡","sale_price":10000000,"vip_card_icon":""},{"vip_card_id":2,"product_id":60038519,"product_name":"月卡","sale_price":10000000,"vip_card_icon":""},{"vip_card_id":1,"product_id":60038515,"product_name":"测1","sale_price":10000000,"vip_card_icon":""}],"request_id":"c5cf58415cffdc30"},
148
161
  }
@@ -2,8 +2,7 @@
2
2
  <view class="xd-my-list-item"
3
3
  :class="'size_'+size"
4
4
  :style="{
5
- borderTop: showBottom ? '1px solid #eee':'none',
6
- marginTop: showBottom? paddingTB: 0,
5
+ borderBottom: showBottom ? '1px solid #F6F6F6':'none',
7
6
  paddingLeft: paddingLR,
8
7
  paddingRight: paddingLR,
9
8
  paddingTop: paddingTB,
@@ -160,16 +160,17 @@
160
160
  <view class="_main">{{item.show_version}}</view>
161
161
  <view class="_sub">{{item.hall_name}}</view>
162
162
  </view>
163
- <view v-if="is_not_show_price !== 'Y'" class="flex-sub">
163
+ <view v-if="is_not_show_price !== 'Y'" style="flex: 2;" class="flex-sub">
164
164
  <view class="_main" style="color: red;">
165
- <xd-unit class="xd-unit"
165
+ <!-- <xd-unit class="xd-unit"
166
166
  :price="item.sale_price"
167
167
  :isOld="false"
168
168
  :isShowIcon="false"
169
- :font-size="24"/>
169
+ :font-size="24"/> -->
170
170
  <!-- {{item.sale_price}} -->
171
+ <CusPrice :isPlus="is_plus_site" :showPrice="item.show_prices" range="起" type="schedule"></CusPrice>
171
172
  </view>
172
- <view class="_sub"> <xd-coins class="xd-coins" :size="0.2"></xd-coins> 起</view>
173
+ <!-- <view class="_sub"> <xd-coins class="xd-coins" :size="0.2"></xd-coins> 起</view> -->
173
174
  </view>
174
175
  <xd-button type="primary" size="small" @click="toChooseSeat(item.schedule_id)">购买</xd-button>
175
176
  </view>
@@ -193,6 +194,7 @@
193
194
  import extsMixins from "@/mixins/extsMixins"
194
195
  import { getContainerPropsValue } from "@/utils/xd.base";
195
196
  import XdTab from "@/components/XdTab/XdTab";
197
+ import CusPrice from '@/components/CusPrice/CusPrice'
196
198
  //#ifdef H5
197
199
  import ZSwiper from "@zebra-ui/swiper/components/z-swiper/z-swiper.vue"
198
200
  import ZSwiperItem from "@zebra-ui/swiper/components/z-swiper-item/z-swiper-item.vue"
@@ -210,6 +212,7 @@
210
212
  XdCoins,
211
213
  XdNoticeBar,
212
214
  XdUnit,
215
+ CusPrice,
213
216
  //#ifdef H5
214
217
  ZSwiper,
215
218
  ZSwiperItem
@@ -245,7 +248,10 @@
245
248
  //面板值
246
249
  seatChoosePath: "",
247
250
  un_show_seconds: "", //排期超时时间(秒)
248
- isMapNav:'Y'
251
+ isMapNav:'Y',
252
+ is_plus_site: false,
253
+ is_vip: false,
254
+
249
255
  }
250
256
  },
251
257
  computed: {
@@ -293,6 +299,8 @@
293
299
  },
294
300
  created() {
295
301
  // console.log("layoutInfo.", this.layoutInfo, this.siteMap)
302
+ this.is_plus_site = this.projectAttr.headers['X-Site-Group']==="vip";
303
+ this.is_vip = this.getTokenForKey('user_level')&&this.getTokenForKey('user_level')==='VIP'
296
304
  this.init(this.container);
297
305
  this.noticeBackgroundColor = Color(this.warningColor).alpha(0.2).toString();
298
306
  },
@@ -131,6 +131,18 @@ module.exports = {
131
131
  "close_time": "1688797020",
132
132
  "max_can_buy": "4",
133
133
  "purchase_price": 3060,
134
+ show_prices: [
135
+ {
136
+ "p": 3060,
137
+ "n": "PLUS价",
138
+ "t": "S"
139
+ },
140
+ {
141
+ "p": 4500,
142
+ "n": "原价",
143
+ "t": "U"
144
+ }
145
+ ],
134
146
  "channel_code": "xicheng",
135
147
  "film_id": "200",
136
148
  "cinema_id": "7",
@@ -153,6 +165,18 @@ module.exports = {
153
165
  "close_time": "1688807220",
154
166
  "max_can_buy": "4",
155
167
  "purchase_price": 3400,
168
+ show_prices: [
169
+ {
170
+ "p": 3400,
171
+ "n": "PLUS价",
172
+ "t": "S"
173
+ },
174
+ {
175
+ "p": 5000,
176
+ "n": "原价",
177
+ "t": "U"
178
+ }
179
+ ],
156
180
  "channel_code": "xicheng",
157
181
  "film_id": "200",
158
182
  "cinema_id": "7",
@@ -175,6 +199,18 @@ module.exports = {
175
199
  "close_time": "1689920220",
176
200
  "max_can_buy": "4",
177
201
  "purchase_price": 800,
202
+ show_prices: [
203
+ {
204
+ "p": 800,
205
+ "n": "PLUS价",
206
+ "t": "S"
207
+ },
208
+ {
209
+ "p": 1300,
210
+ "n": "原价",
211
+ "t": "U"
212
+ }
213
+ ],
178
214
  "channel_code": "jufubao",
179
215
  "film_id": "200",
180
216
  "cinema_id": "7",
@@ -197,6 +233,18 @@ module.exports = {
197
233
  "close_time": "1689930420",
198
234
  "max_can_buy": "4",
199
235
  "purchase_price": 3800,
236
+ show_prices: [
237
+ {
238
+ "p": 3800,
239
+ "n": "PLUS价",
240
+ "t": "S"
241
+ },
242
+ {
243
+ "p": 7300,
244
+ "n": "原价",
245
+ "t": "U"
246
+ }
247
+ ],
200
248
  "channel_code": "jufubao",
201
249
  "film_id": "200",
202
250
  "cinema_id": "7",
@@ -219,6 +267,18 @@ module.exports = {
219
267
  "close_time": "1689933420",
220
268
  "max_can_buy": "4",
221
269
  "purchase_price": 3800,
270
+ show_prices: [
271
+ {
272
+ "p": 3800,
273
+ "n": "PLUS价",
274
+ "t": "S"
275
+ },
276
+ {
277
+ "p": 7300,
278
+ "n": "原价",
279
+ "t": "U"
280
+ }
281
+ ],
222
282
  "channel_code": "jufubao",
223
283
  "film_id": "200",
224
284
  "cinema_id": "7",
@@ -241,6 +301,18 @@ module.exports = {
241
301
  "close_time": "1689940620",
242
302
  "max_can_buy": "4",
243
303
  "purchase_price": 3800,
304
+ show_prices: [
305
+ {
306
+ "p": 3800,
307
+ "n": "PLUS价",
308
+ "t": "S"
309
+ },
310
+ {
311
+ "p": 7300,
312
+ "n": "原价",
313
+ "t": "U"
314
+ }
315
+ ],
244
316
  "channel_code": "jufubao",
245
317
  "film_id": "200",
246
318
  "cinema_id": "7",
@@ -267,6 +339,18 @@ module.exports = {
267
339
  "close_time": "1690006620",
268
340
  "max_can_buy": "4",
269
341
  "purchase_price": 800,
342
+ show_prices: [
343
+ {
344
+ "p": 800,
345
+ "n": "PLUS价",
346
+ "t": "S"
347
+ },
348
+ {
349
+ "p": 1300,
350
+ "n": "原价",
351
+ "t": "U"
352
+ }
353
+ ],
270
354
  "channel_code": "jufubao",
271
355
  "film_id": "200",
272
356
  "cinema_id": "7",
@@ -289,6 +373,18 @@ module.exports = {
289
373
  "close_time": "1688810220",
290
374
  "max_can_buy": "4",
291
375
  "purchase_price": 3400,
376
+ show_prices: [
377
+ {
378
+ "p": 3400,
379
+ "n": "PLUS价",
380
+ "t": "S"
381
+ },
382
+ {
383
+ "p": 5000,
384
+ "n": "原价",
385
+ "t": "U"
386
+ }
387
+ ],
292
388
  "channel_code": "xicheng",
293
389
  "film_id": "200",
294
390
  "cinema_id": "7",
@@ -311,6 +407,18 @@ module.exports = {
311
407
  "close_time": "1688817420",
312
408
  "max_can_buy": "4",
313
409
  "purchase_price": 3400,
410
+ show_prices: [
411
+ {
412
+ "p": 3400,
413
+ "n": "PLUS价",
414
+ "t": "S"
415
+ },
416
+ {
417
+ "p": 5000,
418
+ "n": "原价",
419
+ "t": "U"
420
+ }
421
+ ],
314
422
  "channel_code": "xicheng",
315
423
  "film_id": "200",
316
424
  "cinema_id": "7",
@@ -333,6 +441,18 @@ module.exports = {
333
441
  "close_time": "1688820420",
334
442
  "max_can_buy": "4",
335
443
  "purchase_price": 3400,
444
+ show_prices: [
445
+ {
446
+ "p": 3400,
447
+ "n": "PLUS价",
448
+ "t": "S"
449
+ },
450
+ {
451
+ "p": 5000,
452
+ "n": "原价",
453
+ "t": "U"
454
+ }
455
+ ],
336
456
  "channel_code": "xicheng",
337
457
  "film_id": "200",
338
458
  "cinema_id": "7",
@@ -355,6 +475,18 @@ module.exports = {
355
475
  "close_time": "1688830020",
356
476
  "max_can_buy": "4",
357
477
  "purchase_price": 3230,
478
+ show_prices: [
479
+ {
480
+ "p": 3230,
481
+ "n": "PLUS价",
482
+ "t": "S"
483
+ },
484
+ {
485
+ "p": 4800,
486
+ "n": "原价",
487
+ "t": "U"
488
+ }
489
+ ],
358
490
  "channel_code": "xicheng",
359
491
  "film_id": "200",
360
492
  "cinema_id": "7",
@@ -377,6 +509,18 @@ module.exports = {
377
509
  "close_time": "1690039620",
378
510
  "max_can_buy": "4",
379
511
  "purchase_price": 4000,
512
+ show_prices: [
513
+ {
514
+ "p": 4000,
515
+ "n": "PLUS价",
516
+ "t": "S"
517
+ },
518
+ {
519
+ "p": 7500,
520
+ "n": "原价",
521
+ "t": "U"
522
+ }
523
+ ],
380
524
  "channel_code": "jufubao",
381
525
  "film_id": "200",
382
526
  "cinema_id": "7",
@@ -403,6 +547,18 @@ module.exports = {
403
547
  "close_time": "1688906820",
404
548
  "max_can_buy": "4",
405
549
  "purchase_price": 3800,
550
+ show_prices: [
551
+ {
552
+ "p": 3800,
553
+ "n": "PLUS价",
554
+ "t": "S"
555
+ },
556
+ {
557
+ "p": 7300,
558
+ "n": "原价",
559
+ "t": "U"
560
+ }
561
+ ],
406
562
  "channel_code": "jufubao",
407
563
  "film_id": "200",
408
564
  "cinema_id": "7",
@@ -425,6 +581,18 @@ module.exports = {
425
581
  "close_time": "1688916420",
426
582
  "max_can_buy": "4",
427
583
  "purchase_price": 4000,
584
+ show_prices: [
585
+ {
586
+ "p": 4000,
587
+ "n": "PLUS价",
588
+ "t": "S"
589
+ },
590
+ {
591
+ "p": 7500,
592
+ "n": "原价",
593
+ "t": "U"
594
+ }
595
+ ],
428
596
  "channel_code": "jufubao",
429
597
  "film_id": "200",
430
598
  "cinema_id": "7",
@@ -451,6 +619,18 @@ module.exports = {
451
619
  "close_time": "1688969820",
452
620
  "max_can_buy": "4",
453
621
  "purchase_price": 800,
622
+ show_prices: [
623
+ {
624
+ "p": 800,
625
+ "n": "PLUS价",
626
+ "t": "S"
627
+ },
628
+ {
629
+ "p": 1300,
630
+ "n": "原价",
631
+ "t": "U"
632
+ }
633
+ ],
454
634
  "channel_code": "jufubao",
455
635
  "film_id": "200",
456
636
  "cinema_id": "7",