|
@@ -76,7 +76,18 @@
|
|
|
</view>
|
|
|
</view>
|
|
|
</u-card>
|
|
|
-
|
|
|
+
|
|
|
+ <u-card
|
|
|
+ :show-head="false"
|
|
|
+ :show-foot="false"
|
|
|
+ border-radius="16"
|
|
|
+ margin="20rpx 40rpx"
|
|
|
+ padding="30">
|
|
|
+ <view slot="body" class="">
|
|
|
+ <view>已缴费{{totalCount}}笔,合计{{totalActualAmount}}元</view>
|
|
|
+ <view>当前欠费{{totalPayCount}}笔,合计{{totalPayAmount}}元</view>
|
|
|
+ </view>
|
|
|
+ </u-card>
|
|
|
<!-- ===================================== 无停车信息 ===================================== -->
|
|
|
<view class="empty-data-box" v-if="!orderList || orderList.length < 1">
|
|
|
<u-empty text="暂无停车信息" mode="list"></u-empty>
|
|
@@ -307,7 +318,11 @@ export default {
|
|
|
imageUrl: '../../static/img/index-content-nav-04.png',
|
|
|
title: '我的停车'
|
|
|
}
|
|
|
- ]
|
|
|
+ ],
|
|
|
+ totalActualAmount: '', //缴费总额
|
|
|
+ totalPayAmount: '', //应支付总额
|
|
|
+ totalCount: '', //缴费总笔数
|
|
|
+ totalPayCount: '' //应支付总笔数
|
|
|
}
|
|
|
},
|
|
|
onShow () {
|
|
@@ -473,6 +488,10 @@ export default {
|
|
|
enableFeepay.push(0)
|
|
|
}
|
|
|
})
|
|
|
+ this.totalActualAmount = res.data.payedInfo.totalActualAmount
|
|
|
+ this.totalCount = res.data.payedInfo.totalCount
|
|
|
+ this.totalPayAmount = res.data.payingInfo.totalPayAmount
|
|
|
+ this.totalPayCount = res.data.payingInfo.totalCount
|
|
|
this.recordList = enableFeepay
|
|
|
this.orderNav = enableFeepay[0]
|
|
|
this.contractStatus = enableFeepay[2]
|