|
@@ -47,7 +47,7 @@
|
|
|
<view class="money">¥{{ item.amount }}</view>
|
|
|
<view>{{ item.name || '-' }}</view>
|
|
|
<view class="time" v-if="item.remark">{{ item.remark }}</view>
|
|
|
- <view class="time">支付时间:{{ item.payTime || '-' }}</view>
|
|
|
+ <view class="time">支付时间:{{ item.payTime ? $u.timeFormat(new Date(item.payTime), 'yyyy-mm-dd hh:MM:ss') : '-' }}</view>
|
|
|
</view>
|
|
|
<view class="details-order-list-item-right">{{ item.vehicleNo || '-' }}</view>
|
|
|
</view>
|
|
@@ -164,7 +164,7 @@ export default {
|
|
|
// fileUrl: this.invoiceInfo.fileUrl
|
|
|
// }
|
|
|
// });
|
|
|
- location.href = this.invoiceInfo.fileUrl
|
|
|
+ location.href = this.invoiceInfo.fileUrl;
|
|
|
},
|
|
|
viewMore() {
|
|
|
this.viewMorePop.show = true;
|