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.

36 lines
1.1 KiB
Plaintext

9 months ago
<!-- <loading hidden="{{hidden}}">
努力加载中
</loading> -->
<view class="page">
<view class="container" style="padding:0px;">
<view class="cy-content-top content-center">
<view class='cy-user'>
<view style='font-size:22px'>{{totalAmount}}</view>
<view style='font-size:16px'>账户余额</view>
</view>
</view>
<view class="no_record" wx:if="{{dataList.length == 0}}">
<view class="no_title" style='font-size:14px;'>
暂无消费记录
</view>
</view>
<view wx:if="{{dataList.length > 0}}" class="table" style="border:0px;">
<block wx:if="{{dataList.length > 0}}" wx:for="{{dataList}}" wx:for-index="idx" wx:for-item="item" wx:key="*this">
<view class='table_row'>
<view class='row_left'>
<view class='row_top down-center'>
{{item.shopName}}
</view>
<view class='row_bottom down-center'>
{{item.payDate}}
</view>
</view>
<view class='row_right'>
{{item.actualAmount}}元
</view>
</view>
</block>
</view>
</view>
</view>