jufubao-movie 1.0.30 → 1.0.31-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.30",
3
+ "version": "1.0.31-beta2",
4
4
  "private": false,
5
5
  "description": "聚福宝在线选座业务组件插件包",
6
6
  "main": "index.js",
@@ -29,6 +29,17 @@ export default {
29
29
  groupKey:'advanced',
30
30
  className: 'input80',
31
31
  },
32
+ {
33
+ label: "是否可以使用新票券",
34
+ ele: "xd-radio",
35
+ valueKey: 'bindCard',
36
+ value: data['bindCard'],
37
+ groupKey: 'content',
38
+ list: [
39
+ {label: "是", value: "1"},
40
+ {label: "否", value: "2"},
41
+ ]
42
+ },
32
43
  {
33
44
  label: '购票须知:',
34
45
  ele: 'xd-site-news',
@@ -167,6 +167,7 @@
167
167
  :layoutInfo="layoutInfo"
168
168
  :show.sync="showCardPay"
169
169
  :payThird="!!payThird"
170
+ :bindCard="bindCard"
170
171
  :payChannels="payChannels"
171
172
  :jwxSDK="jwxSDK"
172
173
  :validImageAPIUrl="validImageAPIUrl"
@@ -184,6 +185,7 @@
184
185
  ref="xdCardPayChose"
185
186
  :layoutInfo="layoutInfo"
186
187
  :show.sync="showCardPayChose"
188
+ :bindCard="bindCard"
187
189
  :hadChoseCard="choseCard && choseCard.selectedCardList"
188
190
  :jwxSDK="jwxSDK"
189
191
  :selected_wallet_list="choseWallet ? choseWallet.selectedWalletList : []"
@@ -284,7 +286,10 @@
284
286
  notice: '',
285
287
  title: '',
286
288
  noticeStatus:false,
287
- bgColor: ''
289
+ bgColor: '',
290
+
291
+ bindCard: '1',
292
+ cardKey: "cardKey"
288
293
  }
289
294
  },
290
295
  watch: {
@@ -740,6 +745,7 @@
740
745
  this.bgColor = this.$colorChange(this.mainColor).alpha(0.1).toString();
741
746
  this.payPath = getContainerPropsValue(container, 'content.payPath', {value: ''}).value;
742
747
  this.paySuccessPath = getContainerPropsValue(container, 'content.paySuccessPath', {value: "/pages/order/success"}).value;
748
+ this.bindCard = getContainerPropsValue(container,"content.bindCard","1");
743
749
  this.getContent();
744
750
  },
745
751
  handleCreateSuccess(val) {