Commit 67188bfc authored by malin's avatar malin

t

parent 90b8663a
......@@ -119,6 +119,8 @@
</div>
<div>{{ testInfo }}</div>
<div>testSuccess:{{ testSuccess }}</div>
<div>testUnSuccess:{{ testUnSuccess }}</div>
</div>
</div>
</template>
......@@ -155,6 +157,8 @@ export default {
counter: 1,
orderId: "",
testInfo: "",
testSuccess: "",
testUnSuccess: "",
};
},
......@@ -223,6 +227,9 @@ export default {
if (status != 200) {
// 支付不成功
// 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