card-mini/pages/mine/income/incomelist.wxml
2021-09-03 15:03:38 +08:00

25 lines
1.1 KiB
Plaintext

<cu-custom isBack="{{true}}">
<view slot="content">收益记录</view>
</cu-custom>
<view class="page-box" wx:if="{{recordList.length>0}}">
<block wx:for="{{recordList}}" wx:key="index">
<view class="item">
<view class="content">
<view class="title">{{item.accountItemDescription}}</view>
<view class="hint-msg">收益到账:{{item.gmtCreate}}</view>
<view class="hint-msg">收益金额:<text
style="font-size: 32rpx;color: #E6B980;">¥{{item.accountItemSysMoney/100}}</text></view>
</view>
<view class="subscript">
<image src="/images/ic_hot_number_bg.png" mode="scaleToFill"></image>
<!-- 2:已核对账单,1:支付成功,0:待支付 -->
<view class="state">{{item.accountItemType}}</view>
</view>
</view>
</block>
<van-loading wx:if="{{isLoadMore}}" size="24px">加载中...</van-loading>
</view>
<view wx:else style="margin-top:200rpx;width:100%;">
<van-empty description="暂无数据" />
</view>