jufubao-third 1.0.11-beta4 → 1.0.11-beta5
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
|
@@ -4,6 +4,17 @@ export default {
|
|
|
4
4
|
style: [],
|
|
5
5
|
advanced: [],
|
|
6
6
|
content: [
|
|
7
|
+
{
|
|
8
|
+
label: "支付时是否跳过补差提示:",
|
|
9
|
+
ele: 'xd-radio',
|
|
10
|
+
valueKey: "skipTip",
|
|
11
|
+
value: data['skipTip'] || 'N',
|
|
12
|
+
groupKey:'content',
|
|
13
|
+
list: [
|
|
14
|
+
{label: '是', value: 'Y'},
|
|
15
|
+
{label: '否', value: 'N'},
|
|
16
|
+
],
|
|
17
|
+
},
|
|
7
18
|
{
|
|
8
19
|
label: "选择业务线",
|
|
9
20
|
ele: "xd-choose-namespace",
|
|
@@ -396,7 +396,8 @@
|
|
|
396
396
|
orderSuccessPath: "",
|
|
397
397
|
thirdPayPath: "",
|
|
398
398
|
xnamespace: "",
|
|
399
|
-
bindCard: '1'
|
|
399
|
+
bindCard: '1',
|
|
400
|
+
skipTip: "N",
|
|
400
401
|
}
|
|
401
402
|
},
|
|
402
403
|
watch: {
|
|
@@ -487,6 +488,7 @@
|
|
|
487
488
|
this.thirdPayPath = getContainerPropsValue(container, 'content.thirdPayPath', {value: ""}).value;
|
|
488
489
|
this.xnamespace = getContainerPropsValue(container, 'content.xnamespace', this.projectAttr.business_code);
|
|
489
490
|
this.bindCard = getContainerPropsValue(container,"content.bindCard","1");
|
|
491
|
+
this.skipTip = getContainerPropsValue(container, "content.skipTip", "N");
|
|
490
492
|
},
|
|
491
493
|
getTimeFormat(time){
|
|
492
494
|
let date = null;
|
|
@@ -610,7 +612,7 @@
|
|
|
610
612
|
if(!submitCardList.length){
|
|
611
613
|
//支持补差, 提示是否使用补差
|
|
612
614
|
if(this.payThird){
|
|
613
|
-
if(
|
|
615
|
+
if(this.skipTip === 'N'){
|
|
614
616
|
await this.handleConfirmAllWxPay();
|
|
615
617
|
}
|
|
616
618
|
}else{
|