jufubao-movie 1.0.26 → 1.0.27-beta10

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.26",
3
+ "version": "1.0.27-beta10",
4
4
  "private": false,
5
5
  "description": "聚福宝在线选座业务组件插件包",
6
6
  "main": "index.js",
@@ -120,4 +120,41 @@ module.exports = [
120
120
  isConsole: true,
121
121
  disabled: true,
122
122
  },
123
+ {
124
+ mapFnName: "getPayMethod",
125
+ title: "订单支付-获取支付列表",
126
+ path: "/pay/v1/wallet/list-user-available-pay-method",
127
+ isRule: false,
128
+ params: {
129
+ support_methods: ['元宝:wallet 积分: score 补差:third 卡券:card', 'Array', true],
130
+ },
131
+ isConsole: true,
132
+ disabled: true
133
+ },
134
+ {
135
+ mapFnName: "getUserWallet",
136
+ title: "订单支付-可用钱包列表",
137
+ path: "/pay/v1/wallet/list-user-movie-available-wallet",
138
+ isRule: false,
139
+ params: {
140
+ support_method: ['元宝:wallet 积分: score', 'string', true],
141
+ business_code: ['业务线', 'string', true],
142
+ sub_business_codes: ['子业务线', 'string', true],
143
+ },
144
+ isConsole: true,
145
+ disabled: true
146
+ },
147
+ {
148
+ mapFnName: "useBindedWallet",
149
+ title: "使用已绑钱包",
150
+ path: "/movie/v1/order/use-wallet",
151
+ isRule: false,
152
+ data: {
153
+ selected_card_list_json: ['卡', 'string', true],
154
+ selected_wallet_list_json: ['钱包', 'string', true],
155
+ total_price: ['总金额', 'string', true],
156
+ },
157
+ isConsole: true,
158
+ disabled: true
159
+ }
123
160
  ];
@@ -93,6 +93,7 @@
93
93
  共{{order_info.seat_number}}张:
94
94
  <xd-unit
95
95
  :color="mainColor"
96
+ :isOld="false"
96
97
  :iocnSize="0.32"
97
98
  :fontSize="24"
98
99
  :price="order_info.total_price"
@@ -125,12 +126,26 @@
125
126
  <xd-content-xss style="color: #999" :html="notice"></xd-content-xss>
126
127
  </view>
127
128
  </view>
129
+ <view class="jfb-movie-confirm__body-card">
130
+ <template v-for="item in otherPayMethod">
131
+ <xd-list-item v-if="item.method === 'card'" :key="item.method" :label="item.show_name" paddingLR="0rpx" size="small" showRight @click="toChoseCard">
132
+ <view v-if="choseCard && choseCard.cardPayPrice" slot="label">{{item.show_name}} <text style="color:red;margin-left: 4px;">(已选{{ choseCard.selectedCardList.length }}张)</text></view>
133
+ <xd-unit v-if="choseCard && choseCard.cardPayPrice" :price="choseCard.cardPayPrice" :isOld="false" :fontSize="24" :iconSize="0.3"></xd-unit>
134
+ <view v-else>请选择</view>
135
+ </xd-list-item>
136
+ <xd-list-item v-if="item.method === 'wallet'" :key="item.method" :label="item.show_name" paddingLR="0rpx" size="small" showRight @click="toChoseWallet">
137
+ <xd-unit v-if="choseWallet && choseWallet.walletPayPrice" :price='choseWallet.walletPayPrice' :isOld="false" :fontSize="24" :iconSize="0.3"></xd-unit>
138
+ <view v-else>请选择</view>
139
+ </xd-list-item>
140
+ </template>
141
+ </view>
128
142
  <view class="jfb-movie-confirm__body-btn-height" :style="bottomFixedStylePlaceholder"></view>
129
143
  <view class="jfb-movie-confirm__body-btn" :style="bottomFixedStyle">
130
144
  <view style="display: flex;align-items:center;">
131
145
  <view style="margin-right: 8rpx;">应付:</view>
132
146
  <xd-unit
133
- :price="order_info.total_price"
147
+ :price="orderNeedPayPrice"
148
+ :isOld="false"
134
149
  :font-size="36"
135
150
  :iocn-size=".45"
136
151
  ></xd-unit>
@@ -145,31 +160,66 @@
145
160
  >确认支付</xd-button>
146
161
  </view>
147
162
  </view>
148
- <xd-card-pay
163
+ <template v-if="otherPayLoaded">
164
+ <xd-card-pay
165
+ v-if="!payCard"
166
+ :layoutInfo="layoutInfo"
167
+ :show.sync="showCardPay"
168
+ :payChannels="payChannels"
169
+ :jwxSDK="jwxSDK"
170
+ :validImageAPIUrl="validImageAPIUrl"
171
+ :price="order_info.total_price/100"
172
+ :getSettleListCards="getSettleListCards"
173
+ :setSettleSelectCard="setSettleSelectCard"
174
+ :createSettleOrder="createSettleOrder"
175
+ :addSettleCard="addSettleCard"
176
+ :setThirdPlace="setThirdPlace"
177
+ ref="cardPay"
178
+ @onCreateOrder="handleCreateSuccess"
179
+ ></xd-card-pay>
180
+ <xd-card-pay-chose
181
+ v-else
182
+ ref="xdCardPayChose"
183
+ :layoutInfo="layoutInfo"
184
+ :show.sync="showCardPayChose"
185
+ :hadChoseCard="choseCard && choseCard.selectedCardList"
186
+ :jwxSDK="jwxSDK"
187
+ :selected_wallet_list="choseWallet ? choseWallet.selectedWalletList : []"
188
+ :validImageAPIUrl="validImageAPIUrl"
189
+ :orderTotalPrice="order_info.total_price/100"
190
+ :orderNeedPayPrice="orderNeedPayPrice"
191
+ :getSettleListCards="getSettleListCards"
192
+ :setSettleSelectCard="setSettleSelectCard"
193
+ :addSettleCard="addSettleCard"
194
+ @onChose="handleCardChose"
195
+ @onAlert="() => hasAlertCardChose = true"
196
+ >
197
+ </xd-card-pay-chose>
198
+ </template>
199
+ <xd-wallet-chose
200
+ v-if="payWallet"
201
+ ref="xdWalletChose"
149
202
  :layoutInfo="layoutInfo"
150
- :show.sync="showCardPay"
151
- :payChannels="payChannels"
152
- :jwxSDK="jwxSDK"
153
- :validImageAPIUrl="validImageAPIUrl"
154
- :price="order_info.total_price"
155
- :getSettleListCards="getSettleListCards"
156
- :setSettleSelectCard="setSettleSelectCard"
157
- :createSettleOrder="createSettleOrder"
158
- :addSettleCard="addSettleCard"
159
- :setThirdPlace="setThirdPlace"
160
- ref="cardPay"
161
- @onCreateOrder="handleCreateSuccess"
162
- ></xd-card-pay>
203
+ :show.sync="showWalletChose"
204
+ :hadChoseWallet="choseWallet && choseWallet.selectedWalletList"
205
+ :getUserWalletList="getUserWalletList"
206
+ :useBindedWallet="p_useBindedWallet"
207
+ @onChose="handleWalletChose"
208
+ ></xd-wallet-chose>
209
+
163
210
  </view>
164
211
  </view>
165
212
  </template>
166
213
 
167
214
  <script>
168
215
  import XdFontIcon from "@/components/XdFontIcon/XdFontIcon";
216
+ import XdListItem from "./XdListItem.vue"
169
217
  import XdUnit from "@/components/XdUnit/XdUnit";
170
218
  import XdTag from "@/components/XdTag/XdTag";
171
219
  import XdButton from "@/components/XdButton/XdButton";
172
220
  import XdCardPay from "@/components/XdCardPay/XdCardPay";
221
+ import XdCardPayChose from "@/components/XdCardPayChose/XdCardPayChose"
222
+ import XdWalletChose from "@/components/XdWalletChose/XdWalletChose"
173
223
  import XdContentXss from "@/components/XdContentXss/XdContentXss";
174
224
  import {jfbRootExec} from "@/utils/xd.event";
175
225
  import JfbMovieConfirmMixin from "./JfbMovieConfirmMixin";
@@ -186,7 +236,10 @@
186
236
  XdTag,
187
237
  XdButton,
188
238
  XdCardPay,
189
- XdContentXss
239
+ XdContentXss,
240
+ XdListItem,
241
+ XdCardPayChose,
242
+ XdWalletChose
190
243
  },
191
244
  mixins: [componentsMixins,extsMixins,JfbMovieConfirmMixin],
192
245
  data() {
@@ -212,6 +265,18 @@
212
265
 
213
266
  cardShow: false,
214
267
 
268
+ otherPayMethod: [],
269
+ otherPayLoaded: false,
270
+
271
+ showCardPayChose: false,
272
+ choseCard: null,
273
+ hasAlertCardChose: false,
274
+
275
+ showWalletChose: false,
276
+ choseWallet: null,
277
+
278
+ xnamespace: "",
279
+
215
280
  //提示
216
281
  notice: '',
217
282
  title: '',
@@ -233,10 +298,26 @@
233
298
  },
234
299
  bottomFixedStylePlaceholder(){
235
300
  return this.fixedStyle({paddingBottom: 24, zIndex: 110}, 'bottom', false);
301
+ },
302
+ payWallet(){
303
+ return this.otherPayMethod.find(item => item.method === 'wallet')
304
+ },
305
+ payCard(){
306
+ return this.otherPayMethod.find(item => item.method === 'card')
307
+ },
308
+ //订单实际需要支付金额(减去各项已选,票券、钱包)
309
+ orderNeedPayPrice(){
310
+ let choseCardPay = this.choseCard ? this.choseCard.cardPayPrice : 0;
311
+ let choseWalletPay = this.choseWallet ? this.choseWallet.walletPayPrice : 0;
312
+ let total = this.$xdUniHelper.addFloatNumber(choseCardPay, choseWalletPay);
313
+ let total_amount = this.order_info.total_price ? this.order_info.total_price : 0;
314
+ let result = this.$xdUniHelper.cutFloatNumber(total_amount, total);
315
+ return result;
236
316
  }
237
317
  },
238
318
  created() {
239
319
  this.init(this.container);
320
+ this.xnamespace =this.projectAttr.business_code;
240
321
  // #ifdef H5
241
322
  if (!this.$configProject.isPreview){
242
323
  jfbRootExec("getH5WxAuthorize", {
@@ -295,7 +376,8 @@
295
376
  res.show_time = baseJsDateToTime(res.show_time)
296
377
  res.seat_number = JSON.parse(res.seat_name).length;
297
378
  res.seat_name = JSON.parse(res.seat_name).join(' | ')
298
- res.total_price = this.$xdUniHelper.divisionFloatNumber(res.total_price, 100)
379
+ // res.total_price = this.$xdUniHelper.divisionFloatNumber(res.total_price, 100)
380
+ res.total_price = res.total_price;
299
381
  this.order_info = res
300
382
  this.times = Number(this.order_info['count_down']);
301
383
  let minutes = Math.floor(this.times / 60);
@@ -311,6 +393,12 @@
311
393
  this.times--
312
394
  this.getCountDown();
313
395
 
396
+ //支付方式跟用户相关,与订单无关。
397
+ //只获取一次。
398
+ if(!this.otherPayLoaded){
399
+ this.p_getPayMethod(res.pay_methods);
400
+ }
401
+
314
402
  })
315
403
  .catch(err => {
316
404
  this.$xdHideLoading();
@@ -319,6 +407,94 @@
319
407
  // }
320
408
  });
321
409
  },
410
+ //only选择卡片
411
+ toChoseCard(){
412
+ this.showCardPayChose = true;
413
+ },
414
+ //only选卡结果
415
+ handleCardChose(data){
416
+ console.log(data)
417
+ this.choseCard = data;
418
+ this.showCardPayChose = false;
419
+ },
420
+ //选择元宝
421
+ toChoseWallet(){
422
+ this.showWalletChose = true;
423
+ },
424
+ handleWalletChose({walletPayPrice, needPayPrice, selectedWalletList}){
425
+ this.choseWallet = {
426
+ walletPayPrice,
427
+ needPayPrice,
428
+ selectedWalletList
429
+ }
430
+ console.log(this.choseWallet)
431
+ this.showWalletChose = false;
432
+ },
433
+
434
+ p_getPayMethod(support_methods){
435
+ jfbRootExec("getPayMethod", {
436
+ vm: this,
437
+ data: {
438
+ support_methods: JSON.stringify(support_methods)
439
+ }
440
+ }).then(res => {
441
+ this.otherPayMethod = res.list;
442
+ this.otherPayLoaded = true;
443
+ })
444
+ },
445
+ p_useBindedWallet(options, successCb, errCb){
446
+ console.log("this.choseCard", this.choseCard)
447
+ const { choseCard } = this;
448
+ let selected_card_list = choseCard ? choseCard.selectedCardList : [];
449
+ this.$xdShowLoading({})
450
+ jfbRootExec("useBindedWallet", {
451
+ vm: this,
452
+ data: {
453
+ ...options,
454
+ total_price: this.order_info.total_price,
455
+ selected_card_list_json: JSON.stringify(selected_card_list),
456
+ namespace: this.xnamespace,
457
+ cart_order_id: this.tempOrderId
458
+ }
459
+ }).then(res => {
460
+ successCb(res)
461
+ this.$xdHideLoading()
462
+ }).catch(err => {
463
+ if(errCb) errCb(err)
464
+ })
465
+ },
466
+ getUserWalletList(cb){
467
+ jfbRootExec("getUserWallet", {
468
+ vm: this,
469
+ data: {
470
+ support_method: "wallet",
471
+ business_code: this.xnamespace
472
+ }
473
+ }).then(res => {
474
+ cb(res);
475
+ })
476
+ },
477
+ p_useBindedWallet(options, successCb, errCb){
478
+ console.log("this.choseCard", this.choseCard)
479
+ const { choseCard } = this;
480
+ let selected_card_list = choseCard ? choseCard.selectedCardList : [];
481
+ this.$xdShowLoading({})
482
+ jfbRootExec("useBindedWallet", {
483
+ vm: this,
484
+ data: {
485
+ ...options,
486
+ total_price: this.order_info.total_price,
487
+ selected_card_list_json: JSON.stringify(selected_card_list),
488
+ namespace: this.xnamespace,
489
+ cart_order_id: this.tempOrderId
490
+ }
491
+ }).then(res => {
492
+ successCb(res)
493
+ this.$xdHideLoading()
494
+ }).catch(err => {
495
+ if(errCb) errCb(err)
496
+ })
497
+ },
322
498
  addSettleCard(options, successCb, errCb) {
323
499
  console.log(options, 'ioioioioi')
324
500
  this.$xdShowLoading({})
@@ -389,9 +565,27 @@
389
565
  isTitle: true,
390
566
  $vm: this,
391
567
  content: '<span style="color:red;font-size: 16px">提示:影票一旦售出,将不支持退换!购票成功不再发送短信通知,部分影院不提供3D眼镜,儿童身高免购票以影院实际情况为准。</span>',
392
- success: (res) => {
568
+ success: async (res) => {
393
569
  if(this.is_use_jfb_pay === "Y" && this.is_first_use_card === "Y"){
394
- this.showCardPay = true;
570
+ /**
571
+ * 有任一新版支付都用新版支付, 仅卡支付也用新版选卡支付
572
+ */
573
+ if(this.payWallet || this.payCard){ //已选卡
574
+ let selected_card_list = this.choseCard ? this.choseCard.selectedCardList : [];
575
+ let selected_wallet_list = this.choseWallet ? this.choseWallet.selectedWalletList : []
576
+ //票券跟钱包都未选择,给用户提示
577
+ if(selected_card_list.length == 0 && selected_wallet_list.length == 0){
578
+ if(!this.hasAlertCardChose){
579
+ this.showCardPayChose = true;
580
+ return false;
581
+ }else{
582
+ await this.handleConfirmAllWxPay();
583
+ }
584
+ }
585
+ this.useTickAndWalletPay(selected_card_list, selected_wallet_list);
586
+ }else{
587
+ this.showCardPay = true;
588
+ }
395
589
  }else{
396
590
  this.createSettleOrder({
397
591
  need_pay_price: this.res_total_price,
@@ -407,6 +601,39 @@
407
601
  });
408
602
 
409
603
  },
604
+ handleConfirmAllWxPay(){
605
+ return new Promise((resolve, reject) => {
606
+ uni.showModal({
607
+ title: '提示',
608
+ content: `您当前未使用票券,您将全部用微信支付`,
609
+ confirmText: "我知道了",
610
+ success: function (res) {
611
+ if (res.confirm) {
612
+ resolve();
613
+ } else if (res.cancel) {
614
+ reject("取消支付");
615
+ }
616
+ }
617
+ });
618
+ })
619
+ },
620
+ //使用钱包跟票券一同支付
621
+ useTickAndWalletPay(selected_card_list, selected_wallet_list){
622
+ this.createSettleOrder({
623
+ total_price: this.order_info.total_price,
624
+ selected_card_list_json: JSON.stringify(selected_card_list),
625
+ selected_wallet_list_json: JSON.stringify(selected_wallet_list),
626
+ need_pay_price: this.orderNeedPayPrice
627
+ }, (res) => {
628
+ console.warn("创建订单成功");
629
+ console.warn(res);
630
+ this.handleCreateSuccess({
631
+ need_pay_price: this.orderNeedPayPrice,
632
+ order_id: res.order_id,
633
+ pay_order_id: res.pay_order_id
634
+ })
635
+ })
636
+ },
410
637
  createSettleOrder(options, successCb, errCb) {
411
638
  this.$xdShowLoading({})
412
639
  jfbRootExec("movieCreateOrder", {
@@ -142,5 +142,7 @@ module.exports = {
142
142
  "order_id": "478270984734121984",
143
143
  "pay_order_id": "478270986643316736",
144
144
  "request_id": "c0feda27f5679197"
145
- }
145
+ },
146
+ 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
+ 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"},
146
148
  }
@@ -0,0 +1,137 @@
1
+ <template>
2
+ <view class="xd-my-list-item"
3
+ :class="'size_'+size"
4
+ :style="{
5
+ borderTop: showBottom ? '1px solid #eee':'none',
6
+ marginTop: showBottom? paddingTB: 0,
7
+ paddingLeft: paddingLR,
8
+ paddingRight: paddingLR,
9
+ paddingTop: paddingTB,
10
+ paddingBottom: paddingTB,
11
+ }"
12
+ @click="$emit('click')">
13
+ <view v-if="listIcon" class="my-list_icon">
14
+ <image mode="widthFix" :src="listIcon" />
15
+ </view>
16
+ <view class="my-list_label">
17
+ <slot name="label">
18
+ <view v-html="label"></view>
19
+ </slot>
20
+ </view>
21
+ <view class="my-list_value">
22
+ <slot></slot>
23
+ <xd-font-icon
24
+ v-if="showRight"
25
+ :style="{
26
+ marginLeft: '10rpx',
27
+ color: '#B1B1B1'
28
+ }"
29
+ size="24"
30
+ icon="iconxiangyou_xian"
31
+ ></xd-font-icon>
32
+ </view>
33
+
34
+ </view>
35
+ </template>
36
+
37
+ <script>
38
+ import XdFontIcon from "@/components/XdFontIcon/XdFontIcon";
39
+ export default {
40
+ components: {
41
+ XdFontIcon
42
+ },
43
+ data(){
44
+ return {
45
+
46
+ }
47
+ },
48
+ props: {
49
+ size: {
50
+ type: String,
51
+ default: "default"
52
+ },
53
+ paddingTB:{
54
+ type: String,
55
+ default: "24rpx"
56
+ },
57
+ paddingLR: {
58
+ type: String,
59
+ default: "0rpx"
60
+ },
61
+ //是否显示border-bottom
62
+ showBottom: {
63
+ type: Boolean,
64
+ default: false
65
+ },
66
+ //是否显示右箭头
67
+ showRight: {
68
+ type: Boolean,
69
+ default: false
70
+ },
71
+ //是否显示图标
72
+ listIcon: {
73
+ type: String,
74
+ default: ''
75
+ },
76
+ //label
77
+ label: {
78
+ type: String,
79
+ default: ''
80
+ }
81
+ }
82
+
83
+ }
84
+ </script>
85
+
86
+ <style lang="less" scoped>
87
+ .xd-my-list-item{
88
+ display: flex;
89
+ align-items: center;
90
+ padding: 30rpx 0;
91
+ font-size: 28rpx;
92
+
93
+ &.size_large{
94
+ .my-list_value,
95
+ .my-list_label{
96
+ font-size: 28rpx;
97
+ font-weight: 400;
98
+ }
99
+ }
100
+ &.size_default{
101
+ .my-list_value,
102
+ .my-list_label{
103
+ font-size: 28rpx;
104
+ font-weight: 400;
105
+ }
106
+ }
107
+ &.size_small{
108
+ .my-list_value,
109
+ .my-list_label{
110
+ font-size: 24rpx;
111
+ font-weight: 400;
112
+ }
113
+ }
114
+
115
+ .my-list_icon{
116
+ width: 32rpx;
117
+ margin-right: 24rpx;
118
+
119
+ image{
120
+ width: 32rpx;
121
+ }
122
+ }
123
+
124
+ .my-list_label{
125
+ // flex: 1;
126
+ }
127
+ .my-list_value{
128
+ flex: 1;
129
+ display: flex;
130
+ align-items: center;
131
+ justify-content: flex-end;
132
+ }
133
+ .arrow_right{
134
+ width: 44rpx;
135
+ }
136
+ }
137
+ </style>
@@ -1,126 +1,6 @@
1
1
  "use strict";
2
2
 
3
3
  module.exports = {
4
- getCinemaInfo: {
5
- film_data: [
6
- {
7
- film_id: 563,
8
- show_name_en: "",
9
- remark: "",
10
- show_name: "新闺怨",
11
- poster:
12
- "https://gw.alicdn.com/tfscom/i3/TB1X7yxTxz1gK0jSZSgXXavwpXa_.jpg_320x320.jpg",
13
- type: "剧情",
14
- open_time: 0,
15
- show_version_list: "",
16
- language: "汉语普通话",
17
- leading_role: "吴茵,李浣青,白杨,卫禹平",
18
- director: "史东山"
19
- },
20
- {
21
- film_id: 561,
22
- show_name_en: "Shall we ダンス?",
23
- remark: "9.0",
24
- show_name: "谈谈情跳跳舞",
25
- poster:
26
- "https://gw.alicdn.com/tfscom/i1/TB13QGDWEH1gK0jSZSyXXXtlpXa_.jpg_320x320.jpg",
27
- type: "剧情,喜剧",
28
- open_time: 822672000,
29
- show_version_list: "",
30
- language: "日语",
31
- leading_role: "役所广司,草刈民代,竹中直人,栢野直樹,部谷京子,渡边绘里",
32
- director: "周防正行"
33
- },
34
- {
35
- film_id: 562,
36
- show_name_en: "",
37
- remark: "",
38
- show_name: "奇袭",
39
- poster:
40
- "https://gw.alicdn.com/tfscom/i3/TB1KG9NWET1gK0jSZFrXXcNCXXa_.jpg",
41
- type: "剧情",
42
- open_time: 0,
43
- show_version_list: "",
44
- language: "汉语普通话",
45
- leading_role: "张勇手,邢吉田,黄焕光,曲云",
46
- director: "许又新"
47
- },
48
- {
49
- film_id: 200,
50
- show_name_en: "",
51
- remark: "",
52
- show_name: "曾经的我们致70·80·90",
53
- poster:
54
- "https://gw.alicdn.com/tfscom/i4/TB1dxI.nND1gK0jSZFKXXcJrVXa_.jpg_320x320.jpg",
55
- type: "动作,喜剧",
56
- open_time: 1609344000,
57
- show_version_list: "2D",
58
- language: "汉语普通话",
59
- leading_role: "金良,周娇,冶彦",
60
- director: "杨帆"
61
- },
62
- {
63
- film_id: 581,
64
- show_name_en: "",
65
- remark: "",
66
- show_name: "碧血锦衣卫",
67
- poster:
68
- "https://gw.alicdn.com/tfscom/i4/TB1Zd6clQL0gK0jSZFAXXcA9pXa_.jpg",
69
- type: "动作,古装",
70
- open_time: 1573660800,
71
- show_version_list: "2D",
72
- language: "汉语普通话",
73
- leading_role: "张欣源,冷海铭,苏宥辰",
74
- director: "韩骏"
75
- },
76
- {
77
- film_id: 560,
78
- show_name_en: "上甘嶺",
79
- remark: "",
80
- show_name: "上甘岭",
81
- poster:
82
- "https://gw.alicdn.com/tfscom/i1/O1CN01udYQBF1FsHKxGLK16_!!6000000000542-0-alipicbeacon.jpg_320x320.jpg",
83
- type: "剧情,战争",
84
- open_time: 0,
85
- show_version_list: "2D",
86
- language: "汉语普通话",
87
- leading_role: "高保成,徐林格,刘玉茹,张良,刘磊",
88
- director: "沙蒙, 林杉"
89
- },
90
- {
91
- film_id: 199,
92
- show_name_en: "Kids and Glory",
93
- remark: "",
94
- show_name: "少年无疆",
95
- poster:
96
- "https://gw.alicdn.com/tfscom/i1/TB17YwcmKL2gK0jSZPhXXahvXXa_.jpg",
97
- type: "纪录片",
98
- open_time: 1609344000,
99
- show_version_list: "",
100
- language: "汉语普通话,英语,俄罗斯语,葡萄牙语,维吾尔语",
101
- leading_role: "",
102
- director:
103
- "陆川, 蒂亚戈•阿拉基利安, 娜斯塔雅•塔拉索娃, 里马•达斯, 肖恩· 维尔莫滕, 申兆清, 赵涵"
104
- }
105
- ],
106
- cinema_data: {
107
- cinema_id: 7,
108
- latitude: "39.96429445936123",
109
- longitude: "116.84224867132198",
110
- address: "燕高路西侧实验小学南侧",
111
- phone: "15233684995",
112
- cinema_name: "聚福宝测试影院",
113
- ticket_notice: "温馨提示:电影开场前30分钟停止售票,建议您提前购票!",
114
- brand_id: 0,
115
- about: "",
116
- cinema_logo: "",
117
- distance: ""
118
- },
119
- is_pop: false,
120
- pop_notice:
121
- "此影城暂停在线选座,请拨打人工选座电话:@tel@ 我们将高效快捷的为您订座!给您带来不便多海涵!",
122
- request_id: "e33efa91e92b241e"
123
- },
124
4
  getCinemaSchedule: {
125
5
  schedule_data: [
126
6
  {
@@ -2173,7 +2053,17 @@ module.exports = {
2173
2053
  cinema_id: "7",
2174
2054
  request_id: "d63a14849096e467"
2175
2055
  },
2176
- getCinemaSeats: {
2056
+ lockCinemaSeat: {
2057
+ request_seat_id: "5000002-DYac2dRpE45NejWuTptaM",
2058
+ request_id: "e835bce47455fc3b"
2059
+ },
2060
+ getCinemaSeatsStatus: {
2061
+ seat_status: "Y",
2062
+ seat_message: "ok",
2063
+ temp_order_id: "c0dfa87a50e22208a8399e89628df4f0",
2064
+ request_id: "4920a42f37f5d8d5"
2065
+ },
2066
+ getCinemaSeatsAsync: {
2177
2067
  seat_data: [
2178
2068
  {
2179
2069
  seat_rows: "1",
@@ -2184,7 +2074,7 @@ module.exports = {
2184
2074
  id: "1306340102#01#01",
2185
2075
  left_px: "1",
2186
2076
  name: "1排1列",
2187
- price: 5800,
2077
+ price: 4600,
2188
2078
  unit: "",
2189
2079
  row: "1",
2190
2080
  row_name: "1",
@@ -2199,7 +2089,7 @@ module.exports = {
2199
2089
  id: "1306340102#01#02",
2200
2090
  left_px: "2",
2201
2091
  name: "1排2列",
2202
- price: 5800,
2092
+ price: 4600,
2203
2093
  unit: "",
2204
2094
  row: "1",
2205
2095
  row_name: "1",
@@ -2214,7 +2104,7 @@ module.exports = {
2214
2104
  id: "1306340102#01#03",
2215
2105
  left_px: "3",
2216
2106
  name: "1排3列",
2217
- price: 5800,
2107
+ price: 4600,
2218
2108
  unit: "",
2219
2109
  row: "1",
2220
2110
  row_name: "1",
@@ -2229,7 +2119,7 @@ module.exports = {
2229
2119
  id: "1306340102#01#04",
2230
2120
  left_px: "4",
2231
2121
  name: "1排4列",
2232
- price: 5800,
2122
+ price: 4600,
2233
2123
  unit: "",
2234
2124
  row: "1",
2235
2125
  row_name: "1",
@@ -2244,7 +2134,7 @@ module.exports = {
2244
2134
  id: "1306340102#01#05",
2245
2135
  left_px: "5",
2246
2136
  name: "1排5列",
2247
- price: 5800,
2137
+ price: 4600,
2248
2138
  unit: "",
2249
2139
  row: "1",
2250
2140
  row_name: "1",
@@ -2259,7 +2149,7 @@ module.exports = {
2259
2149
  id: "1306340102#01#06",
2260
2150
  left_px: "6",
2261
2151
  name: "1排6列",
2262
- price: 5800,
2152
+ price: 4600,
2263
2153
  unit: "",
2264
2154
  row: "1",
2265
2155
  row_name: "1",
@@ -2274,7 +2164,7 @@ module.exports = {
2274
2164
  id: "1306340102#01#07",
2275
2165
  left_px: "7",
2276
2166
  name: "1排7列",
2277
- price: 5800,
2167
+ price: 4600,
2278
2168
  unit: "",
2279
2169
  row: "1",
2280
2170
  row_name: "1",
@@ -2289,7 +2179,7 @@ module.exports = {
2289
2179
  id: "1306340102#01#08",
2290
2180
  left_px: "8",
2291
2181
  name: "1排8列",
2292
- price: 5800,
2182
+ price: 4600,
2293
2183
  unit: "",
2294
2184
  row: "1",
2295
2185
  row_name: "1",
@@ -2304,7 +2194,7 @@ module.exports = {
2304
2194
  id: "1306340102#01#09",
2305
2195
  left_px: "9",
2306
2196
  name: "1排9列",
2307
- price: 5800,
2197
+ price: 4600,
2308
2198
  unit: "",
2309
2199
  row: "1",
2310
2200
  row_name: "1",
@@ -2324,7 +2214,7 @@ module.exports = {
2324
2214
  id: "1306340102#02#01",
2325
2215
  left_px: "1",
2326
2216
  name: "2排1列",
2327
- price: 5800,
2217
+ price: 4600,
2328
2218
  unit: "",
2329
2219
  row: "2",
2330
2220
  row_name: "2",
@@ -2339,7 +2229,7 @@ module.exports = {
2339
2229
  id: "1306340102#02#02",
2340
2230
  left_px: "2",
2341
2231
  name: "2排2列",
2342
- price: 5800,
2232
+ price: 4600,
2343
2233
  unit: "",
2344
2234
  row: "2",
2345
2235
  row_name: "2",
@@ -2354,7 +2244,7 @@ module.exports = {
2354
2244
  id: "1306340102#02#03",
2355
2245
  left_px: "3",
2356
2246
  name: "2排3列",
2357
- price: 5800,
2247
+ price: 4600,
2358
2248
  unit: "",
2359
2249
  row: "2",
2360
2250
  row_name: "2",
@@ -2369,7 +2259,7 @@ module.exports = {
2369
2259
  id: "1306340102#02#04",
2370
2260
  left_px: "4",
2371
2261
  name: "2排4列",
2372
- price: 5800,
2262
+ price: 4600,
2373
2263
  unit: "",
2374
2264
  row: "2",
2375
2265
  row_name: "2",
@@ -2384,7 +2274,7 @@ module.exports = {
2384
2274
  id: "1306340102#02#05",
2385
2275
  left_px: "5",
2386
2276
  name: "2排5列",
2387
- price: 5800,
2277
+ price: 4600,
2388
2278
  unit: "",
2389
2279
  row: "2",
2390
2280
  row_name: "2",
@@ -2399,7 +2289,7 @@ module.exports = {
2399
2289
  id: "1306340102#02#06",
2400
2290
  left_px: "6",
2401
2291
  name: "2排6列",
2402
- price: 5800,
2292
+ price: 4600,
2403
2293
  unit: "",
2404
2294
  row: "2",
2405
2295
  row_name: "2",
@@ -2414,7 +2304,7 @@ module.exports = {
2414
2304
  id: "1306340102#02#07",
2415
2305
  left_px: "7",
2416
2306
  name: "2排7列",
2417
- price: 5800,
2307
+ price: 4600,
2418
2308
  unit: "",
2419
2309
  row: "2",
2420
2310
  row_name: "2",
@@ -2429,7 +2319,7 @@ module.exports = {
2429
2319
  id: "1306340102#02#08",
2430
2320
  left_px: "8",
2431
2321
  name: "2排8列",
2432
- price: 5800,
2322
+ price: 4600,
2433
2323
  unit: "",
2434
2324
  row: "2",
2435
2325
  row_name: "2",
@@ -2444,7 +2334,7 @@ module.exports = {
2444
2334
  id: "1306340102#02#09",
2445
2335
  left_px: "9",
2446
2336
  name: "2排9列",
2447
- price: 5800,
2337
+ price: 4600,
2448
2338
  unit: "",
2449
2339
  row: "2",
2450
2340
  row_name: "2",
@@ -2464,7 +2354,7 @@ module.exports = {
2464
2354
  id: "1306340102#03#01",
2465
2355
  left_px: "1",
2466
2356
  name: "3排1列",
2467
- price: 5800,
2357
+ price: 4600,
2468
2358
  unit: "",
2469
2359
  row: "3",
2470
2360
  row_name: "3",
@@ -2479,7 +2369,7 @@ module.exports = {
2479
2369
  id: "1306340102#03#02",
2480
2370
  left_px: "2",
2481
2371
  name: "3排2列",
2482
- price: 5800,
2372
+ price: 4600,
2483
2373
  unit: "",
2484
2374
  row: "3",
2485
2375
  row_name: "3",
@@ -2494,7 +2384,7 @@ module.exports = {
2494
2384
  id: "1306340102#03#03",
2495
2385
  left_px: "3",
2496
2386
  name: "3排3列",
2497
- price: 5800,
2387
+ price: 4600,
2498
2388
  unit: "",
2499
2389
  row: "3",
2500
2390
  row_name: "3",
@@ -2509,7 +2399,7 @@ module.exports = {
2509
2399
  id: "1306340102#03#04",
2510
2400
  left_px: "4",
2511
2401
  name: "3排4列",
2512
- price: 5800,
2402
+ price: 4600,
2513
2403
  unit: "",
2514
2404
  row: "3",
2515
2405
  row_name: "3",
@@ -2524,7 +2414,7 @@ module.exports = {
2524
2414
  id: "1306340102#03#05",
2525
2415
  left_px: "5",
2526
2416
  name: "3排5列",
2527
- price: 5800,
2417
+ price: 4600,
2528
2418
  unit: "",
2529
2419
  row: "3",
2530
2420
  row_name: "3",
@@ -2539,7 +2429,7 @@ module.exports = {
2539
2429
  id: "1306340102#03#06",
2540
2430
  left_px: "6",
2541
2431
  name: "3排6列",
2542
- price: 5800,
2432
+ price: 4600,
2543
2433
  unit: "",
2544
2434
  row: "3",
2545
2435
  row_name: "3",
@@ -2554,7 +2444,7 @@ module.exports = {
2554
2444
  id: "1306340102#03#07",
2555
2445
  left_px: "7",
2556
2446
  name: "3排7列",
2557
- price: 5800,
2447
+ price: 4600,
2558
2448
  unit: "",
2559
2449
  row: "3",
2560
2450
  row_name: "3",
@@ -2569,7 +2459,7 @@ module.exports = {
2569
2459
  id: "1306340102#03#08",
2570
2460
  left_px: "8",
2571
2461
  name: "3排8列",
2572
- price: 5800,
2462
+ price: 4600,
2573
2463
  unit: "",
2574
2464
  row: "3",
2575
2465
  row_name: "3",
@@ -2584,7 +2474,7 @@ module.exports = {
2584
2474
  id: "1306340102#03#09",
2585
2475
  left_px: "9",
2586
2476
  name: "3排9列",
2587
- price: 5800,
2477
+ price: 4600,
2588
2478
  unit: "",
2589
2479
  row: "3",
2590
2480
  row_name: "3",
@@ -2604,7 +2494,7 @@ module.exports = {
2604
2494
  id: "1306340102#04#01",
2605
2495
  left_px: "1",
2606
2496
  name: "4排1列",
2607
- price: 5800,
2497
+ price: 4600,
2608
2498
  unit: "",
2609
2499
  row: "4",
2610
2500
  row_name: "4",
@@ -2619,7 +2509,7 @@ module.exports = {
2619
2509
  id: "1306340102#04#02",
2620
2510
  left_px: "2",
2621
2511
  name: "4排2列",
2622
- price: 5800,
2512
+ price: 4600,
2623
2513
  unit: "",
2624
2514
  row: "4",
2625
2515
  row_name: "4",
@@ -2634,7 +2524,7 @@ module.exports = {
2634
2524
  id: "1306340102#04#03",
2635
2525
  left_px: "3",
2636
2526
  name: "4排3列",
2637
- price: 5800,
2527
+ price: 4600,
2638
2528
  unit: "",
2639
2529
  row: "4",
2640
2530
  row_name: "4",
@@ -2649,7 +2539,7 @@ module.exports = {
2649
2539
  id: "1306340102#04#04",
2650
2540
  left_px: "4",
2651
2541
  name: "4排4列",
2652
- price: 5800,
2542
+ price: 4600,
2653
2543
  unit: "",
2654
2544
  row: "4",
2655
2545
  row_name: "4",
@@ -2664,7 +2554,7 @@ module.exports = {
2664
2554
  id: "1306340102#04#05",
2665
2555
  left_px: "5",
2666
2556
  name: "4排5列",
2667
- price: 5800,
2557
+ price: 4600,
2668
2558
  unit: "",
2669
2559
  row: "4",
2670
2560
  row_name: "4",
@@ -2679,7 +2569,7 @@ module.exports = {
2679
2569
  id: "1306340102#04#06",
2680
2570
  left_px: "6",
2681
2571
  name: "4排6列",
2682
- price: 5800,
2572
+ price: 4600,
2683
2573
  unit: "",
2684
2574
  row: "4",
2685
2575
  row_name: "4",
@@ -2694,7 +2584,7 @@ module.exports = {
2694
2584
  id: "1306340102#04#07",
2695
2585
  left_px: "7",
2696
2586
  name: "4排7列",
2697
- price: 5800,
2587
+ price: 4600,
2698
2588
  unit: "",
2699
2589
  row: "4",
2700
2590
  row_name: "4",
@@ -2709,7 +2599,7 @@ module.exports = {
2709
2599
  id: "1306340102#04#08",
2710
2600
  left_px: "8",
2711
2601
  name: "4排8列",
2712
- price: 5800,
2602
+ price: 4600,
2713
2603
  unit: "",
2714
2604
  row: "4",
2715
2605
  row_name: "4",
@@ -2724,7 +2614,7 @@ module.exports = {
2724
2614
  id: "1306340102#04#09",
2725
2615
  left_px: "9",
2726
2616
  name: "4排9列",
2727
- price: 5800,
2617
+ price: 4600,
2728
2618
  unit: "",
2729
2619
  row: "4",
2730
2620
  row_name: "4",
@@ -2744,7 +2634,7 @@ module.exports = {
2744
2634
  id: "1306340102#05#01",
2745
2635
  left_px: "1",
2746
2636
  name: "5排1列",
2747
- price: 5800,
2637
+ price: 4600,
2748
2638
  unit: "",
2749
2639
  row: "5",
2750
2640
  row_name: "5",
@@ -2759,7 +2649,7 @@ module.exports = {
2759
2649
  id: "1306340102#05#02",
2760
2650
  left_px: "2",
2761
2651
  name: "5排2列",
2762
- price: 5800,
2652
+ price: 4600,
2763
2653
  unit: "",
2764
2654
  row: "5",
2765
2655
  row_name: "5",
@@ -2774,7 +2664,7 @@ module.exports = {
2774
2664
  id: "1306340102#05#03",
2775
2665
  left_px: "3",
2776
2666
  name: "5排3列",
2777
- price: 5800,
2667
+ price: 4600,
2778
2668
  unit: "",
2779
2669
  row: "5",
2780
2670
  row_name: "5",
@@ -2789,7 +2679,7 @@ module.exports = {
2789
2679
  id: "1306340102#05#04",
2790
2680
  left_px: "4",
2791
2681
  name: "5排4列",
2792
- price: 5800,
2682
+ price: 4600,
2793
2683
  unit: "",
2794
2684
  row: "5",
2795
2685
  row_name: "5",
@@ -2804,7 +2694,7 @@ module.exports = {
2804
2694
  id: "1306340102#05#05",
2805
2695
  left_px: "5",
2806
2696
  name: "5排5列",
2807
- price: 5800,
2697
+ price: 4600,
2808
2698
  unit: "",
2809
2699
  row: "5",
2810
2700
  row_name: "5",
@@ -2819,7 +2709,7 @@ module.exports = {
2819
2709
  id: "1306340102#05#06",
2820
2710
  left_px: "6",
2821
2711
  name: "5排6列",
2822
- price: 5800,
2712
+ price: 4600,
2823
2713
  unit: "",
2824
2714
  row: "5",
2825
2715
  row_name: "5",
@@ -2834,7 +2724,7 @@ module.exports = {
2834
2724
  id: "1306340102#05#07",
2835
2725
  left_px: "7",
2836
2726
  name: "5排7列",
2837
- price: 5800,
2727
+ price: 4600,
2838
2728
  unit: "",
2839
2729
  row: "5",
2840
2730
  row_name: "5",
@@ -2849,7 +2739,7 @@ module.exports = {
2849
2739
  id: "1306340102#05#08",
2850
2740
  left_px: "8",
2851
2741
  name: "5排8列",
2852
- price: 5800,
2742
+ price: 4600,
2853
2743
  unit: "",
2854
2744
  row: "5",
2855
2745
  row_name: "5",
@@ -2864,7 +2754,7 @@ module.exports = {
2864
2754
  id: "1306340102#05#09",
2865
2755
  left_px: "9",
2866
2756
  name: "5排9列",
2867
- price: 5800,
2757
+ price: 4600,
2868
2758
  unit: "",
2869
2759
  row: "5",
2870
2760
  row_name: "5",
@@ -2884,7 +2774,7 @@ module.exports = {
2884
2774
  id: "1306340102#06#01",
2885
2775
  left_px: "1",
2886
2776
  name: "6排1列",
2887
- price: 5800,
2777
+ price: 4600,
2888
2778
  unit: "",
2889
2779
  row: "6",
2890
2780
  row_name: "6",
@@ -2899,7 +2789,7 @@ module.exports = {
2899
2789
  id: "1306340102#06#02",
2900
2790
  left_px: "2",
2901
2791
  name: "6排2列",
2902
- price: 5800,
2792
+ price: 4600,
2903
2793
  unit: "",
2904
2794
  row: "6",
2905
2795
  row_name: "6",
@@ -2914,7 +2804,7 @@ module.exports = {
2914
2804
  id: "1306340102#06#03",
2915
2805
  left_px: "3",
2916
2806
  name: "6排3列",
2917
- price: 5800,
2807
+ price: 4600,
2918
2808
  unit: "",
2919
2809
  row: "6",
2920
2810
  row_name: "6",
@@ -2929,7 +2819,7 @@ module.exports = {
2929
2819
  id: "1306340102#06#04",
2930
2820
  left_px: "4",
2931
2821
  name: "6排4列",
2932
- price: 5800,
2822
+ price: 4600,
2933
2823
  unit: "",
2934
2824
  row: "6",
2935
2825
  row_name: "6",
@@ -2944,7 +2834,7 @@ module.exports = {
2944
2834
  id: "1306340102#06#05",
2945
2835
  left_px: "5",
2946
2836
  name: "6排5列",
2947
- price: 5800,
2837
+ price: 4600,
2948
2838
  unit: "",
2949
2839
  row: "6",
2950
2840
  row_name: "6",
@@ -2959,7 +2849,7 @@ module.exports = {
2959
2849
  id: "1306340102#06#06",
2960
2850
  left_px: "6",
2961
2851
  name: "6排6列",
2962
- price: 5800,
2852
+ price: 4600,
2963
2853
  unit: "",
2964
2854
  row: "6",
2965
2855
  row_name: "6",
@@ -2974,7 +2864,7 @@ module.exports = {
2974
2864
  id: "1306340102#06#07",
2975
2865
  left_px: "7",
2976
2866
  name: "6排7列",
2977
- price: 5800,
2867
+ price: 4600,
2978
2868
  unit: "",
2979
2869
  row: "6",
2980
2870
  row_name: "6",
@@ -2989,7 +2879,7 @@ module.exports = {
2989
2879
  id: "1306340102#06#08",
2990
2880
  left_px: "8",
2991
2881
  name: "6排8列",
2992
- price: 5800,
2882
+ price: 4600,
2993
2883
  unit: "",
2994
2884
  row: "6",
2995
2885
  row_name: "6",
@@ -3004,7 +2894,7 @@ module.exports = {
3004
2894
  id: "1306340102#06#09",
3005
2895
  left_px: "9",
3006
2896
  name: "6排9列",
3007
- price: 5800,
2897
+ price: 4600,
3008
2898
  unit: "",
3009
2899
  row: "6",
3010
2900
  row_name: "6",
@@ -3024,7 +2914,7 @@ module.exports = {
3024
2914
  id: "1306340102#07#01",
3025
2915
  left_px: "1",
3026
2916
  name: "7排1列",
3027
- price: 5800,
2917
+ price: 4600,
3028
2918
  unit: "",
3029
2919
  row: "7",
3030
2920
  row_name: "7",
@@ -3039,7 +2929,7 @@ module.exports = {
3039
2929
  id: "1306340102#07#02",
3040
2930
  left_px: "2",
3041
2931
  name: "7排2列",
3042
- price: 5800,
2932
+ price: 4600,
3043
2933
  unit: "",
3044
2934
  row: "7",
3045
2935
  row_name: "7",
@@ -3054,7 +2944,7 @@ module.exports = {
3054
2944
  id: "1306340102#07#03",
3055
2945
  left_px: "3",
3056
2946
  name: "7排3列",
3057
- price: 5800,
2947
+ price: 4600,
3058
2948
  unit: "",
3059
2949
  row: "7",
3060
2950
  row_name: "7",
@@ -3069,7 +2959,7 @@ module.exports = {
3069
2959
  id: "1306340102#07#04",
3070
2960
  left_px: "4",
3071
2961
  name: "7排4列",
3072
- price: 5800,
2962
+ price: 4600,
3073
2963
  unit: "",
3074
2964
  row: "7",
3075
2965
  row_name: "7",
@@ -3084,7 +2974,7 @@ module.exports = {
3084
2974
  id: "1306340102#07#05",
3085
2975
  left_px: "5",
3086
2976
  name: "7排5列",
3087
- price: 5800,
2977
+ price: 4600,
3088
2978
  unit: "",
3089
2979
  row: "7",
3090
2980
  row_name: "7",
@@ -3099,7 +2989,7 @@ module.exports = {
3099
2989
  id: "1306340102#07#06",
3100
2990
  left_px: "6",
3101
2991
  name: "7排6列",
3102
- price: 5800,
2992
+ price: 4600,
3103
2993
  unit: "",
3104
2994
  row: "7",
3105
2995
  row_name: "7",
@@ -3114,7 +3004,7 @@ module.exports = {
3114
3004
  id: "1306340102#07#07",
3115
3005
  left_px: "7",
3116
3006
  name: "7排7列",
3117
- price: 5800,
3007
+ price: 4600,
3118
3008
  unit: "",
3119
3009
  row: "7",
3120
3010
  row_name: "7",
@@ -3129,7 +3019,7 @@ module.exports = {
3129
3019
  id: "1306340102#07#08",
3130
3020
  left_px: "8",
3131
3021
  name: "7排8列",
3132
- price: 5800,
3022
+ price: 4600,
3133
3023
  unit: "",
3134
3024
  row: "7",
3135
3025
  row_name: "7",
@@ -3144,7 +3034,7 @@ module.exports = {
3144
3034
  id: "1306340102#07#09",
3145
3035
  left_px: "9",
3146
3036
  name: "7排9列",
3147
- price: 5800,
3037
+ price: 4600,
3148
3038
  unit: "",
3149
3039
  row: "7",
3150
3040
  row_name: "7",
@@ -3156,13 +3046,19 @@ module.exports = {
3156
3046
  ]
3157
3047
  }
3158
3048
  ],
3159
- film_id: "200",
3049
+ status: "Y",
3050
+ request_ident: "b12d5d7c794c8cc34625552bfc8de578_1712020569",
3051
+ error_message: "",
3052
+ request_id: "8bf254253bba488b"
3053
+ },
3054
+ getSeatBaseInfo: {
3055
+ film_id: "581",
3160
3056
  cinema_id: "7",
3161
- cinema_name: "聚福宝测试影院",
3162
- film_name: "曾经的我们致70·80·90",
3163
- show_date: "2023-07-15(周六) 14:10",
3164
- show_version: "英语 3D",
3165
- hall_name: "6厅(需自备3D眼镜)",
3057
+ cinema_name: "聚福宝测试影院聚福宝测试影院聚福宝测试影院聚福宝测试影院",
3058
+ film_name: "碧血锦衣卫",
3059
+ show_date: "2024-04-08(周一) 14:20",
3060
+ show_version: "英语 2D",
3061
+ hall_name: "5厅(看2D影片需自备2D眼镜)",
3166
3062
  phone: "",
3167
3063
  tips: ["观影提示:电影放映期间厅内禁止饮食,感谢配合!"],
3168
3064
  max_can_buy: 4,
@@ -3175,16 +3071,6 @@ module.exports = {
3175
3071
  "3": "台胞证",
3176
3072
  "4": "港澳通行证"
3177
3073
  },
3178
- request_id: "be08ac617a57d990"
3179
- },
3180
- lockCinemaSeat: {
3181
- request_seat_id: "5000002-DYac2dRpE45NejWuTptaM",
3182
- request_id: "e835bce47455fc3b"
3183
- },
3184
- getCinemaSeatsStatus: {
3185
- seat_status: "P",
3186
- seat_message: "订单正在处理中,请稍后",
3187
- temp_order_id: "",
3188
- request_id: "5c74dfd0cb21c98e"
3074
+ request_id: "cc4bde105691814c"
3189
3075
  }
3190
- };
3076
+ };