Commit fe0bf3ba authored by Xuguangxing's avatar Xuguangxing

fix

parent 87b56971
...@@ -98,10 +98,10 @@ export default { ...@@ -98,10 +98,10 @@ export default {
}, },
created() { created() {
const { orderNo, reason, payType } = this.$route.query; const { orderNo, reason, payType } = this.$route.query;
const { amount, freeAmount } = cookies.get('amount') || {}; const { finalAmt, freeAmount } = cookies.get('amount') || {};
const { success } = this.$route.meta; const { success } = this.$route.meta;
this.payType = payType || ''; this.payType = payType || '';
this.money = amount || ''; this.money = finalAmt || '';
this.orderNo = orderNo; this.orderNo = orderNo;
this.reason = reason || ''; this.reason = reason || '';
this.isSuccess = success || false; this.isSuccess = success || false;
......
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