From 21bb7bf62d04c0fb1bac5cdce15090da4518f745 Mon Sep 17 00:00:00 2001 From: liuqimichale <123456lq> Date: Tue, 19 Jan 2021 09:49:54 +0800 Subject: [PATCH] 历史欠费缴纳 --- src/api/parkRecord/parkRecord.js | 8 ++++++++ src/components/parkRecord.vue | 141 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-------------------------------------- src/utils/utils.js | 54 +++++++++++++++++++++++++++++++++++++++++++++++++++++- 3 files changed, 164 insertions(+), 39 deletions(-) diff --git a/src/api/parkRecord/parkRecord.js b/src/api/parkRecord/parkRecord.js index cb6b024..680030c 100644 --- a/src/api/parkRecord/parkRecord.js +++ b/src/api/parkRecord/parkRecord.js @@ -7,3 +7,11 @@ export function parkRecordList(params) { data: params }) } + +export function historyQuery(params) { + return request({ + url: '/api/queryParkOrder/queryArrearageStaForWXPublc', + method: 'post', + data: params + }) +} diff --git a/src/components/parkRecord.vue b/src/components/parkRecord.vue index 5079fc0..c21f3ca 100644 --- a/src/components/parkRecord.vue +++ b/src/components/parkRecord.vue @@ -14,33 +14,33 @@
-
+

您为会员卡车辆无需缴费,请直接离场。

    -
  • 蒙DMW169
  • +
  • {{i.carNumber}}
  • 本次费用

车辆类型:临停车

-

车场名称:赤峰金店南 +

车场名称:{{i.parkName}}

-

进场时间:2020-12-19 12:59:18 +

进场时间:{{i.parkInTime}}

-

出场时间:2020-12-19 12:17:52 +

出场时间:{{i.parkOutTime}}

-

停车时长:18分钟33秒

+

停车时长:{{ $utils.dateFormat(i.parkDuration)}}

-

¥1.50

+

¥{{(i.totalFee/100).toFixed(2)}}

出场缴费

-
暂无记录
+
暂无记录
@@ -51,7 +51,7 @@

总欠费金额: - ¥15.50 + ¥{{(allMoney/100).toFixed(2)}}

    -
  • 蒙DMW169
  • +
  • {{i.carNumber}}
  • 欠费

车辆类型:临停车

-

车场名称:赤峰金店南 +

车场名称:{{i.parkName}}

-

进场时间:2020-12-19 12:59:18 +

进场时间:{{i.parkInTime}}

-

出场时间:2020-12-19 12:17:52 +

出场时间:{{i.parkOutTime}}

-

停车时长:18分钟33秒

+

停车时长:{{ $utils.dateFormat(i.parkDuration)}}

-

¥1.50

+

¥{{(i.totalFee/100).toFixed(2)}}

@@ -88,7 +88,7 @@