|
@@ -6,6 +6,10 @@
|
|
|
<span>{{month}}月</span>
|
|
|
<u-icon name="arrow-down-s-fill" custom-prefix="custom-icon" color="#B3B3B3" size="32"></u-icon>
|
|
|
</view>
|
|
|
+ <view class="carNone" v-if="accountList.length == 0">
|
|
|
+ <img src="static/img/none2.svg" alt="">
|
|
|
+ <p>暂无充值记录</p>
|
|
|
+ </view>
|
|
|
<view class="rechargeList" v-if="accountList.length > 0">
|
|
|
<view class="rechargeList-item" v-for="(item,index) in accountList" :key="item.id" @click="gotoUrl('pages/user/finance/rechargeDet?id=' + item.id)">
|
|
|
<view class="rechargeList-row"><span>充值金额</span><h4>{{item.amount}}</h4></view>
|
|
@@ -93,6 +97,19 @@
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
+ .carNone{
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ justify-content: center;
|
|
|
+ align-items: center;
|
|
|
+ img{
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ }
|
|
|
+ p{
|
|
|
+ margin-top: -60px;
|
|
|
+ }
|
|
|
+ }
|
|
|
.rechargeTime{
|
|
|
background-color: #fff;
|
|
|
height: 44px;
|