2024-02-29 09:27:59 +08:00

49 lines
1.7 KiB
XML

<view class="_transaction_page_html">
<view class="_transaction_page_body">
<block a:if="{{rechargeList.length && rechargeFlag}}">
<view class="_tr_pa_bo_data_list">
<block a:for="{{rechargeList}}">
<view class="_bo_da_li_warp" a:key={{index}}>
<view class="_da_li_wa_header">
<view class="_round_after _is_round" />
<view class="_round_before _is_round" />
<block a:if={{item.status == 1}}>
<view class="_wa_he_title">
<text>充值{{item.money}}元已支付</text>
</view>
</block>
<block a:else>
<view class="_wa_he_title_err">
<text>充值{{item.money}}元未支付</text>
</view>
</block>
</view>
<view class="_da_li_wa_container">
<view class="_wa_con_info">
<text class="_goods_name">订单号码:</text>
<text class="_goods_code">{{item.out_trade_no}}</text>
</view>
<view class="_wa_con_info">
<text class="_goods_name">充值时间:</text>
<text class="_goods_code">{{item.create_time}}</text>
</view>
<view class="_wa_con_info">
<text class="_goods_name">充值金额:</text>
<text class="_goods_code">{{item.money}}¥</text>
</view>
</view>
</view>
</block>
</view>
</block>
<block a:elif="{{!rechargeList.length && rechargeFlag}}">
<view class="mt-50">
<my-empty tipsName="暂无充值明细" />
</view>
</block>
</view>
</view>