Browse Source

发票详情

zaijin 1 year ago
parent
commit
a1e1241fe6
1 changed files with 2 additions and 2 deletions
  1. 2 2
      pages/invoiceModule/invoiceDetails/invoiceDetails.vue

+ 2 - 2
pages/invoiceModule/invoiceDetails/invoiceDetails.vue

@@ -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;