jufubao-base 1.0.209-beta2 → 1.0.209-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 +1 -1
- package/src/components/JfbBaseRecharge/JfbBaseRecharge.vue +2 -2
- package/src/components/JfbBaseRechargeNew/JfbBaseRechargeNew.vue +2 -2
- package/src/components/JfbBaseRechargeOrder/JfbBaseRechargeOrder.vue +2 -2
- package/src/components/JfbBaseRechargeSuccess/JfbBaseRechargeSuccess.vue +1 -1
package/package.json
CHANGED
|
@@ -150,9 +150,9 @@ export default {
|
|
|
150
150
|
},
|
|
151
151
|
|
|
152
152
|
toLink(pay_order_id, order_id){
|
|
153
|
-
this.$xdUniHelper.
|
|
153
|
+
this.$xdUniHelper.navigateTo({
|
|
154
154
|
url: `${this.payPath}?order_id=${pay_order_id}&main_order_id=${order_id}&type=recharge`,
|
|
155
|
-
}
|
|
155
|
+
});
|
|
156
156
|
},
|
|
157
157
|
|
|
158
158
|
handleToRecharge() {
|
|
@@ -173,9 +173,9 @@ export default {
|
|
|
173
173
|
})
|
|
174
174
|
return;
|
|
175
175
|
}
|
|
176
|
-
this.$xdUniHelper.
|
|
176
|
+
this.$xdUniHelper.navigateTo({
|
|
177
177
|
url: `${this.payPath}?order_id=${pay_order_id}&main_order_id=${order_id}&type=recharge`,
|
|
178
|
-
}
|
|
178
|
+
});
|
|
179
179
|
},
|
|
180
180
|
|
|
181
181
|
onJfbShow(options) {
|
|
@@ -102,7 +102,7 @@
|
|
|
102
102
|
size="mini"
|
|
103
103
|
type="primary"
|
|
104
104
|
:bgColor="mainColor"
|
|
105
|
-
@click="handleToPay(item)"
|
|
105
|
+
@click.stop="handleToPay(item)"
|
|
106
106
|
>
|
|
107
107
|
{{ item.pay_status === "3007" ? "去支付" : "重新支付" }}
|
|
108
108
|
</xd-button>
|
|
@@ -293,7 +293,7 @@ export default {
|
|
|
293
293
|
},
|
|
294
294
|
handleToPay(item) {
|
|
295
295
|
this.$xdUniHelper.navigateTo({
|
|
296
|
-
url: `${this.payPath}?order_id=${item.pay_order_id}&main_order_id=${item.order_id}`,
|
|
296
|
+
url: `${this.payPath}?order_id=${item.pay_order_id}&main_order_id=${item.order_id}&type=${this.type}`,
|
|
297
297
|
});
|
|
298
298
|
},
|
|
299
299
|
handleToDetail(item) {
|
|
@@ -115,7 +115,7 @@ export default {
|
|
|
115
115
|
},
|
|
116
116
|
handleToPay() {
|
|
117
117
|
this.$xdUniHelper.navigateTo({
|
|
118
|
-
url: `${this.payPath}?order_id=${this.info.pay_order_id}&main_order_id=${this.order_id}`,
|
|
118
|
+
url: `${this.payPath}?order_id=${this.info.pay_order_id}&main_order_id=${this.order_id}&type=${this.type}`,
|
|
119
119
|
});
|
|
120
120
|
},
|
|
121
121
|
handleToBtn(item) {
|