We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc0fab6 commit 196213cCopy full SHA for 196213c
resources/mixes/vue-omnipay/src/components/app/app.vue
@@ -47,7 +47,10 @@ export default {
47
wechatQrcodeConfig: {
48
size: 260
49
},
50
- responseOrder: null
+ responseOrder: {
51
+ query_id: null,
52
+ status: 'unpaid'
53
+ }
54
}
55
56
computed: {
@@ -72,7 +75,7 @@ export default {
72
75
getEventHandlers () {
73
76
return {
74
77
'CoreCMF\\Omnipay\\App\\Events\\OrderStatusUpdated': response => {
- if (this.order.order_id == response.order.order_id) {
78
+ if (this.order.order_id === response.order.order_id) {
79
this.responseOrder = response.order
80
81
0 commit comments