Commit 67188bfc authored by malin's avatar malin

t

parent 90b8663a
...@@ -119,6 +119,8 @@ ...@@ -119,6 +119,8 @@
</div> </div>
<div>{{ testInfo }}</div> <div>{{ testInfo }}</div>
<div>testSuccess:{{ testSuccess }}</div>
<div>testUnSuccess:{{ testUnSuccess }}</div>
</div> </div>
</div> </div>
</template> </template>
...@@ -155,6 +157,8 @@ export default { ...@@ -155,6 +157,8 @@ export default {
counter: 1, counter: 1,
orderId: "", orderId: "",
testInfo: "", testInfo: "",
testSuccess: "",
testUnSuccess: "",
}; };
}, },
...@@ -223,6 +227,9 @@ export default { ...@@ -223,6 +227,9 @@ export default {
if (status != 200) { if (status != 200) {
// 支付不成功 // 支付不成功
// this.$router.push({ path: "/pay", query: this.babyInfo }); // this.$router.push({ path: "/pay", query: this.babyInfo });
this.testUnSuccess = status;
} else {
this.testSuccess = status;
} }
}); });
}, },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment