jufubao-third 1.0.7 → 1.0.8-beta1
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
|
@@ -44,5 +44,16 @@ export default {
|
|
|
44
44
|
},
|
|
45
45
|
inline: false,
|
|
46
46
|
},
|
|
47
|
+
{
|
|
48
|
+
label: "是否可以使用新票券",
|
|
49
|
+
ele: "xd-radio",
|
|
50
|
+
valueKey: 'bindCard',
|
|
51
|
+
value: "",
|
|
52
|
+
groupKey: 'content',
|
|
53
|
+
list: [
|
|
54
|
+
{label: "是", value: "1"},
|
|
55
|
+
{label: "否", value: "2"},
|
|
56
|
+
]
|
|
57
|
+
},
|
|
47
58
|
],
|
|
48
59
|
}
|
|
@@ -163,6 +163,7 @@
|
|
|
163
163
|
v-if="payCard"
|
|
164
164
|
ref="xdCardPayChose"
|
|
165
165
|
:layoutInfo="layoutInfo"
|
|
166
|
+
:bindCard="bindCard"
|
|
166
167
|
:show.sync="showCardPayChose"
|
|
167
168
|
:hadChoseCard="choseCard && choseCard.selectedCardList"
|
|
168
169
|
:jwxSDK="jwxSDK"
|
|
@@ -336,6 +337,7 @@
|
|
|
336
337
|
orderSuccessPath: "",
|
|
337
338
|
thirdPayPath: "",
|
|
338
339
|
xnamespace: "",
|
|
340
|
+
bindCard: '1'
|
|
339
341
|
}
|
|
340
342
|
},
|
|
341
343
|
watch: {
|
|
@@ -404,6 +406,7 @@
|
|
|
404
406
|
this.orderSuccessPath = getContainerPropsValue(container, 'content.orderSuccessPath', {value: ""}).value;
|
|
405
407
|
this.thirdPayPath = getContainerPropsValue(container, 'content.thirdPayPath', {value: ""}).value;
|
|
406
408
|
this.xnamespace = getContainerPropsValue(container, 'content.xnamespace', this.projectAttr.business_code);
|
|
409
|
+
this.bindCard = getContainerPropsValue(container,"content.bindCard","1");
|
|
407
410
|
},
|
|
408
411
|
getTimeFormat(time){
|
|
409
412
|
let date = null;
|