|
@@ -94,6 +94,10 @@ export default {
|
|
const res = await invoicesDeatil(id)
|
|
const res = await invoicesDeatil(id)
|
|
console.log('支付订单详情', res)
|
|
console.log('支付订单详情', res)
|
|
self.order = res;
|
|
self.order = res;
|
|
|
|
+ // self.order.invoiceUrls = [
|
|
|
|
+ // "https://kip-public-qa.oss-cn-shanghai.aliyuncs.com/d159353ac6974b3d9cc6e5b2f4f6d29e_982792411690_46740156.pdf",
|
|
|
|
+ // "https://kip-public-qa.oss-cn-shanghai.aliyuncs.com/37ba3bf249da457d8e10a582d29eb7c0_960842461483_17739293.pdf"
|
|
|
|
+ // ]
|
|
} catch {
|
|
} catch {
|
|
uni.showToast({
|
|
uni.showToast({
|
|
title: '服务器开小差了呢,请您稍后再试',
|
|
title: '服务器开小差了呢,请您稍后再试',
|
|
@@ -140,8 +144,13 @@ export default {
|
|
});
|
|
});
|
|
},
|
|
},
|
|
showInvoiceDetail() {
|
|
showInvoiceDetail() {
|
|
|
|
+ window.localStorage.setItem('parkingInvoice', JSON.stringify(this.order))
|
|
this.$router.push({
|
|
this.$router.push({
|
|
- path: 'parkingInvoiceImage?order=' + JSON.stringify(this.order),
|
|
|
|
|
|
+ path: 'parkingInvoiceImage',
|
|
|
|
+ query:{
|
|
|
|
+ ...this.$route.query,
|
|
|
|
+ orderId: this.order.id
|
|
|
|
+ }
|
|
});
|
|
});
|
|
},
|
|
},
|
|
},
|
|
},
|