jufubao-movie 1.0.26 → 1.0.27-beta3

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-beta3",
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-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,26 @@
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"){
570
+ if(this.payWallet){ //已选卡
571
+ let selected_card_list = this.choseCard ? this.choseCard.selectedCardList : [];
572
+ let selected_wallet_list = this.choseWallet ? this.choseWallet.selectedWalletList : []
573
+ //票券跟钱包都未选择,给用户提示
574
+ if(selected_card_list.length == 0 && selected_wallet_list.length == 0){
575
+ //
576
+ if(!this.hasAlertCardChose){
577
+ this.showCardPayChose = true;
578
+ return false;
579
+ }else{
580
+ await this.handleConfirmAllWxPay();
581
+ }
582
+ }
583
+ this.useTickAndWalletPay(selected_card_list, selected_wallet_list);
584
+ }else{
394
585
  this.showCardPay = true;
586
+ }
587
+
395
588
  }else{
396
589
  this.createSettleOrder({
397
590
  need_pay_price: this.res_total_price,
@@ -407,6 +600,39 @@
407
600
  });
408
601
 
409
602
  },
603
+ handleConfirmAllWxPay(){
604
+ return new Promise((resolve, reject) => {
605
+ uni.showModal({
606
+ title: '提示',
607
+ content: `您当前未使用票券,您将全部用微信支付`,
608
+ confirmText: "我知道了",
609
+ success: function (res) {
610
+ if (res.confirm) {
611
+ resolve();
612
+ } else if (res.cancel) {
613
+ reject("取消支付");
614
+ }
615
+ }
616
+ });
617
+ })
618
+ },
619
+ //使用钱包跟票券一同支付
620
+ useTickAndWalletPay(selected_card_list, selected_wallet_list){
621
+ this.createSettleOrder({
622
+ total_price: this.order_info.total_price,
623
+ selected_card_list_json: JSON.stringify(selected_card_list),
624
+ selected_wallet_list_json: JSON.stringify(selected_wallet_list),
625
+ need_pay_price: this.orderNeedPayPrice
626
+ }, (res) => {
627
+ console.warn("创建订单成功");
628
+ console.warn(res);
629
+ this.handleCreateSuccess({
630
+ need_pay_price: this.orderNeedPayPrice,
631
+ order_id: res.order_id,
632
+ pay_order_id: res.pay_order_id
633
+ })
634
+ })
635
+ },
410
636
  createSettleOrder(options, successCb, errCb) {
411
637
  this.$xdShowLoading({})
412
638
  jfbRootExec("movieCreateOrder", {
@@ -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>
@@ -3182,9 +3182,11 @@ module.exports = {
3182
3182
  request_id: "e835bce47455fc3b"
3183
3183
  },
3184
3184
  getCinemaSeatsStatus: {
3185
- seat_status: "P",
3186
- seat_message: "订单正在处理中,请稍后",
3187
- temp_order_id: "",
3188
- request_id: "5c74dfd0cb21c98e"
3189
- }
3185
+ "seat_status":"Y",
3186
+ "seat_message":"ok",
3187
+ "temp_order_id":"c0dfa87a50e22208a8399e89628df4f0",
3188
+ "request_id":"4920a42f37f5d8d5"
3189
+ },
3190
+ getCinemaSeatsAsync: {"seat_data":[{"seat_rows":"1","seat_columns":[{"area":"0101","column":"1","id":"1306340102#01#01","left_px":"1","name":"1排1列","price":4600,"unit":"","row":"1","row_name":"1","status":"true","top_px":"1","type":"0","flag":"0"},{"area":"0102","column":"2","id":"1306340102#01#02","left_px":"2","name":"1排2列","price":4600,"unit":"","row":"1","row_name":"1","status":"true","top_px":"1","type":"0","flag":"0"},{"area":"0103","column":"3","id":"1306340102#01#03","left_px":"3","name":"1排3列","price":4600,"unit":"","row":"1","row_name":"1","status":"false","top_px":"1","type":"0","flag":"0"},{"area":"0104","column":"4","id":"1306340102#01#04","left_px":"4","name":"1排4列","price":4600,"unit":"","row":"1","row_name":"1","status":"true","top_px":"1","type":"0","flag":"0"},{"area":"0105","column":"5","id":"1306340102#01#05","left_px":"5","name":"1排5列","price":4600,"unit":"","row":"1","row_name":"1","status":"true","top_px":"1","type":"0","flag":"0"},{"area":"0106","column":"6","id":"1306340102#01#06","left_px":"6","name":"1排6列","price":4600,"unit":"","row":"1","row_name":"1","status":"false","top_px":"1","type":"0","flag":"0"},{"area":"0107","column":"7","id":"1306340102#01#07","left_px":"7","name":"1排7列","price":4600,"unit":"","row":"1","row_name":"1","status":"true","top_px":"1","type":"0","flag":"0"},{"area":"0108","column":"8","id":"1306340102#01#08","left_px":"8","name":"1排8列","price":4600,"unit":"","row":"1","row_name":"1","status":"true","top_px":"1","type":"0","flag":"0"},{"area":"0109","column":"9","id":"1306340102#01#09","left_px":"9","name":"1排9列","price":4600,"unit":"","row":"1","row_name":"1","status":"false","top_px":"1","type":"0","flag":"0"}]},{"seat_rows":"2","seat_columns":[{"area":"0201","column":"1","id":"1306340102#02#01","left_px":"1","name":"2排1列","price":4600,"unit":"","row":"2","row_name":"2","status":"true","top_px":"2","type":"0","flag":"0"},{"area":"0202","column":"2","id":"1306340102#02#02","left_px":"2","name":"2排2列","price":4600,"unit":"","row":"2","row_name":"2","status":"true","top_px":"2","type":"0","flag":"0"},{"area":"0203","column":"3","id":"1306340102#02#03","left_px":"3","name":"2排3列","price":4600,"unit":"","row":"2","row_name":"2","status":"true","top_px":"2","type":"0","flag":"0"},{"area":"0204","column":"4","id":"1306340102#02#04","left_px":"4","name":"2排4列","price":4600,"unit":"","row":"2","row_name":"2","status":"true","top_px":"2","type":"0","flag":"0"},{"area":"0205","column":"5","id":"1306340102#02#05","left_px":"5","name":"2排5列","price":4600,"unit":"","row":"2","row_name":"2","status":"true","top_px":"2","type":"0","flag":"0"},{"area":"0206","column":"6","id":"1306340102#02#06","left_px":"6","name":"2排6列","price":4600,"unit":"","row":"2","row_name":"2","status":"true","top_px":"2","type":"0","flag":"0"},{"area":"0207","column":"7","id":"1306340102#02#07","left_px":"7","name":"2排7列","price":4600,"unit":"","row":"2","row_name":"2","status":"true","top_px":"2","type":"0","flag":"0"},{"area":"0208","column":"8","id":"1306340102#02#08","left_px":"8","name":"2排8列","price":4600,"unit":"","row":"2","row_name":"2","status":"true","top_px":"2","type":"0","flag":"0"},{"area":"0209","column":"9","id":"1306340102#02#09","left_px":"9","name":"2排9列","price":4600,"unit":"","row":"2","row_name":"2","status":"true","top_px":"2","type":"0","flag":"0"}]},{"seat_rows":"3","seat_columns":[{"area":"0301","column":"1","id":"1306340102#03#01","left_px":"1","name":"3排1列","price":4600,"unit":"","row":"3","row_name":"3","status":"true","top_px":"3","type":"0","flag":"0"},{"area":"0302","column":"2","id":"1306340102#03#02","left_px":"2","name":"3排2列","price":4600,"unit":"","row":"3","row_name":"3","status":"true","top_px":"3","type":"0","flag":"0"},{"area":"0303","column":"3","id":"1306340102#03#03","left_px":"3","name":"3排3列","price":4600,"unit":"","row":"3","row_name":"3","status":"true","top_px":"3","type":"0","flag":"0"},{"area":"0304","column":"4","id":"1306340102#03#04","left_px":"4","name":"3排4列","price":4600,"unit":"","row":"3","row_name":"3","status":"true","top_px":"3","type":"0","flag":"0"},{"area":"0305","column":"5","id":"1306340102#03#05","left_px":"5","name":"3排5列","price":4600,"unit":"","row":"3","row_name":"3","status":"true","top_px":"3","type":"0","flag":"0"},{"area":"0306","column":"6","id":"1306340102#03#06","left_px":"6","name":"3排6列","price":4600,"unit":"","row":"3","row_name":"3","status":"false","top_px":"3","type":"0","flag":"0"},{"area":"0307","column":"7","id":"1306340102#03#07","left_px":"7","name":"3排7列","price":4600,"unit":"","row":"3","row_name":"3","status":"true","top_px":"3","type":"0","flag":"0"},{"area":"0308","column":"8","id":"1306340102#03#08","left_px":"8","name":"3排8列","price":4600,"unit":"","row":"3","row_name":"3","status":"true","top_px":"3","type":"0","flag":"0"},{"area":"0309","column":"9","id":"1306340102#03#09","left_px":"9","name":"3排9列","price":4600,"unit":"","row":"3","row_name":"3","status":"true","top_px":"3","type":"0","flag":"0"}]},{"seat_rows":"4","seat_columns":[{"area":"0401","column":"1","id":"1306340102#04#01","left_px":"1","name":"4排1列","price":4600,"unit":"","row":"4","row_name":"4","status":"true","top_px":"4","type":"0","flag":"0"},{"area":"0402","column":"2","id":"1306340102#04#02","left_px":"2","name":"4排2列","price":4600,"unit":"","row":"4","row_name":"4","status":"true","top_px":"4","type":"0","flag":"0"},{"area":"0403","column":"3","id":"1306340102#04#03","left_px":"3","name":"4排3列","price":4600,"unit":"","row":"4","row_name":"4","status":"false","top_px":"4","type":"0","flag":"0"},{"area":"0404","column":"4","id":"1306340102#04#04","left_px":"4","name":"4排4列","price":4600,"unit":"","row":"4","row_name":"4","status":"true","top_px":"4","type":"0","flag":"0"},{"area":"0405","column":"5","id":"1306340102#04#05","left_px":"5","name":"4排5列","price":4600,"unit":"","row":"4","row_name":"4","status":"true","top_px":"4","type":"0","flag":"0"},{"area":"0406","column":"6","id":"1306340102#04#06","left_px":"6","name":"4排6列","price":4600,"unit":"","row":"4","row_name":"4","status":"false","top_px":"4","type":"0","flag":"0"},{"area":"0407","column":"7","id":"1306340102#04#07","left_px":"7","name":"4排7列","price":4600,"unit":"","row":"4","row_name":"4","status":"true","top_px":"4","type":"0","flag":"0"},{"area":"0408","column":"8","id":"1306340102#04#08","left_px":"8","name":"4排8列","price":4600,"unit":"","row":"4","row_name":"4","status":"true","top_px":"4","type":"0","flag":"0"},{"area":"0409","column":"9","id":"1306340102#04#09","left_px":"9","name":"4排9列","price":4600,"unit":"","row":"4","row_name":"4","status":"true","top_px":"4","type":"0","flag":"0"}]},{"seat_rows":"5","seat_columns":[{"area":"0501","column":"1","id":"1306340102#05#01","left_px":"1","name":"5排1列","price":4600,"unit":"","row":"5","row_name":"5","status":"true","top_px":"5","type":"0","flag":"0"},{"area":"0502","column":"2","id":"1306340102#05#02","left_px":"2","name":"5排2列","price":4600,"unit":"","row":"5","row_name":"5","status":"true","top_px":"5","type":"0","flag":"0"},{"area":"0503","column":"3","id":"1306340102#05#03","left_px":"3","name":"5排3列","price":4600,"unit":"","row":"5","row_name":"5","status":"false","top_px":"5","type":"0","flag":"0"},{"area":"0504","column":"4","id":"1306340102#05#04","left_px":"4","name":"5排4列","price":4600,"unit":"","row":"5","row_name":"5","status":"true","top_px":"5","type":"0","flag":"0"},{"area":"0505","column":"5","id":"1306340102#05#05","left_px":"5","name":"5排5列","price":4600,"unit":"","row":"5","row_name":"5","status":"true","top_px":"5","type":"0","flag":"0"},{"area":"0506","column":"6","id":"1306340102#05#06","left_px":"6","name":"5排6列","price":4600,"unit":"","row":"5","row_name":"5","status":"true","top_px":"5","type":"0","flag":"0"},{"area":"0507","column":"7","id":"1306340102#05#07","left_px":"7","name":"5排7列","price":4600,"unit":"","row":"5","row_name":"5","status":"true","top_px":"5","type":"0","flag":"0"},{"area":"0508","column":"8","id":"1306340102#05#08","left_px":"8","name":"5排8列","price":4600,"unit":"","row":"5","row_name":"5","status":"true","top_px":"5","type":"0","flag":"0"},{"area":"0509","column":"9","id":"1306340102#05#09","left_px":"9","name":"5排9列","price":4600,"unit":"","row":"5","row_name":"5","status":"false","top_px":"5","type":"0","flag":"0"}]},{"seat_rows":"6","seat_columns":[{"area":"0601","column":"1","id":"1306340102#06#01","left_px":"1","name":"6排1列","price":4600,"unit":"","row":"6","row_name":"6","status":"true","top_px":"6","type":"0","flag":"0"},{"area":"0602","column":"2","id":"1306340102#06#02","left_px":"2","name":"6排2列","price":4600,"unit":"","row":"6","row_name":"6","status":"true","top_px":"6","type":"0","flag":"0"},{"area":"0603","column":"3","id":"1306340102#06#03","left_px":"3","name":"6排3列","price":4600,"unit":"","row":"6","row_name":"6","status":"false","top_px":"6","type":"0","flag":"0"},{"area":"0604","column":"4","id":"1306340102#06#04","left_px":"4","name":"6排4列","price":4600,"unit":"","row":"6","row_name":"6","status":"true","top_px":"6","type":"0","flag":"0"},{"area":"0605","column":"5","id":"1306340102#06#05","left_px":"5","name":"6排5列","price":4600,"unit":"","row":"6","row_name":"6","status":"true","top_px":"6","type":"0","flag":"0"},{"area":"0606","column":"6","id":"1306340102#06#06","left_px":"6","name":"6排6列","price":4600,"unit":"","row":"6","row_name":"6","status":"true","top_px":"6","type":"0","flag":"0"},{"area":"0607","column":"7","id":"1306340102#06#07","left_px":"7","name":"6排7列","price":4600,"unit":"","row":"6","row_name":"6","status":"true","top_px":"6","type":"0","flag":"0"},{"area":"0608","column":"8","id":"1306340102#06#08","left_px":"8","name":"6排8列","price":4600,"unit":"","row":"6","row_name":"6","status":"true","top_px":"6","type":"0","flag":"0"},{"area":"0609","column":"9","id":"1306340102#06#09","left_px":"9","name":"6排9列","price":4600,"unit":"","row":"6","row_name":"6","status":"false","top_px":"6","type":"0","flag":"0"}]},{"seat_rows":"7","seat_columns":[{"area":"0701","column":"1","id":"1306340102#07#01","left_px":"1","name":"7排1列","price":4600,"unit":"","row":"7","row_name":"7","status":"truell","top_px":"7","type":"LL","flag":"1"},{"area":"0702","column":"2","id":"1306340102#07#02","left_px":"2","name":"7排2列","price":4600,"unit":"","row":"7","row_name":"7","status":"truelr","top_px":"7","type":"LR","flag":"2"},{"area":"0703","column":"3","id":"1306340102#07#03","left_px":"3","name":"7排3列","price":4600,"unit":"","row":"7","row_name":"7","status":"truell","top_px":"7","type":"LL","flag":"1"},{"area":"0704","column":"4","id":"1306340102#07#04","left_px":"4","name":"7排4列","price":4600,"unit":"","row":"7","row_name":"7","status":"truelr","top_px":"7","type":"LR","flag":"2"},{"area":"0705","column":"5","id":"1306340102#07#05","left_px":"5","name":"7排5列","price":4600,"unit":"","row":"7","row_name":"7","status":"truell","top_px":"7","type":"LL","flag":"1"},{"area":"0706","column":"6","id":"1306340102#07#06","left_px":"6","name":"7排6列","price":4600,"unit":"","row":"7","row_name":"7","status":"truelr","top_px":"7","type":"LR","flag":"2"},{"area":"0707","column":"7","id":"1306340102#07#07","left_px":"7","name":"7排7列","price":4600,"unit":"","row":"7","row_name":"7","status":"truell","top_px":"7","type":"LL","flag":"1"},{"area":"0708","column":"8","id":"1306340102#07#08","left_px":"8","name":"7排8列","price":4600,"unit":"","row":"7","row_name":"7","status":"truelr","top_px":"7","type":"LR","flag":"2"},{"area":"0709","column":"9","id":"1306340102#07#09","left_px":"9","name":"7排9列","price":4600,"unit":"","row":"7","row_name":"7","status":"false","top_px":"7","type":"0","flag":"0"}]}],"status":"Y","request_ident":"b12d5d7c794c8cc34625552bfc8de578_1712020569","error_message":"","request_id":"8bf254253bba488b"},
3191
+
3190
3192
  };