You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

17 lines
551 B

<view class="container">
<view class="circle">
<block wx:for="{{cashlist}}" wx:key="cashlist">
<view class="list">
<view class="list-top">
提现-微信<text>¥{{item.money}}</text>
</view>
<view class="time">
{{item.time}}
<text wx:if="{{item.status==1}}" class="red">提现成功</text>
<text wx:elif="{{item.status==2}}" class="yellow">审核中</text>
<text wx:else class="green">提现失败</text>
</view>
</view>
</block>
</view>
</view>