|
@@ -2,7 +2,7 @@
|
|
|
<view>
|
|
|
<u-navbar title="我的余额">
|
|
|
<view class="slot-wrap">
|
|
|
- <span class="navBtn" @click="toRefundList">退费</span>
|
|
|
+ <span class="navBtn" @click="toRefundList">退余额</span>
|
|
|
</view>
|
|
|
</u-navbar>
|
|
|
<view class="balance">
|
|
@@ -32,7 +32,7 @@
|
|
|
<view class="balanceMain-title">
|
|
|
<view class="title">
|
|
|
<u-icon name="todo-fill" custom-prefix="custom-icon" color="#6BC6A7" size="40"></u-icon>
|
|
|
- <span>余额明细</span>
|
|
|
+ <span>充值明细</span>
|
|
|
</view>
|
|
|
<view class="more" @click="seeAll">
|
|
|
<span>查看全部</span>
|
|
@@ -80,7 +80,7 @@
|
|
|
if(monthN >= 1 && monthN <= 9) {
|
|
|
monthN = "0" + monthN;
|
|
|
}
|
|
|
- this.dateMonth = year + '-' + monthN;
|
|
|
+ this.dateMonth = year + '-' + monthN + '-01';
|
|
|
|
|
|
this.getCarPersonAccount();
|
|
|
this.getAccountRecordData();
|
|
@@ -97,9 +97,7 @@
|
|
|
mask: true,
|
|
|
})
|
|
|
API.accountRecordData({
|
|
|
- pageIndex: 1,
|
|
|
- pageSize: 10,
|
|
|
- month: this.dateMonth
|
|
|
+ queryDate: this.dateMonth
|
|
|
}).then((res) => {
|
|
|
uni.hideLoading();
|
|
|
|