|
@@ -121,6 +121,10 @@ export default defineComponent({
|
|
|
path: '/orderDetail',
|
|
|
query: {
|
|
|
config: JSON.stringify(paymentConfig.paymentConfig),
|
|
|
+ // config: JSON.stringify({
|
|
|
+ // ...paymentConfig.paymentConfig,
|
|
|
+ // paymentType: paymentConfig.paymentType
|
|
|
+ // }),
|
|
|
orderNo: paymentConfig.orderNo
|
|
|
}
|
|
|
})
|
|
@@ -184,7 +188,11 @@ export default defineComponent({
|
|
|
this.$router.push({
|
|
|
path: '/orderDetail',
|
|
|
query: {
|
|
|
- config: JSON.stringify(data.paymentConfig),
|
|
|
+ // config: JSON.stringify(data.paymentConfig),
|
|
|
+ config: JSON.stringify({
|
|
|
+ ...data.paymentConfig,
|
|
|
+ paymentType: data.paymentType
|
|
|
+ }),
|
|
|
orderNo: data.orderNo
|
|
|
}
|
|
|
})
|