You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
929 B
Plaintext
28 lines
929 B
Plaintext
<wxs src="../../common.wxs" module="tools" />
|
|
<view class="p20" style="padding-top:0;">
|
|
<view wx:for="{{recordList}}" wx:key='{{index}}'>
|
|
<view class="oneP">
|
|
<view class="flex-1">
|
|
<view class="display-flex">
|
|
<view class="flex-1">
|
|
<view class="userName">微信零钱{{tools.getHideRealName(item.realName)}}</view>
|
|
<view class="time">{{tools.timeagoLater(item.updateTime)}}</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view>
|
|
<view class="rtText cf00">¥{{item.money}}</view>
|
|
<view class="rbText">已到账</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<view wx:if="{{recordList == null || recordList.length == 0}}">
|
|
<view style="margin-top:100px;text-align:center;">
|
|
<i class="t-icon t-icon-zanwujilu" style="width:80px;height:80px;margin:0 auto;"></i>
|
|
</view>
|
|
<view class='tc p20 f16 cccc'>
|
|
暂无记录
|
|
</view>
|
|
</view> |