qingcheng-xiaochengxu/pages/personCenter/billingDetails/billingDetails.wxml

21 lines
1.1 KiB
Plaintext
Raw Normal View History

2025-05-21 10:40:41 +00:00
<view class="flex-col justify-start page">
<view class="flex-col justify-start section">
<view class="flex-col section_2">
<text class="self-start text">账单明细</text>
<view class="flex-col self-stretch">
2025-05-29 13:31:35 +00:00
<view class="flex-col list-item" wx:for="{{withdrawalList}}" wx:for-item="item" wx:for-index="index" wx:key="index">
2025-05-21 10:40:41 +00:00
<view class="flex-row justify-between items-baseline">
<text class="font text_2">银行卡</text>
2025-05-29 13:31:35 +00:00
<text class="font_2">¥{{ item.withdrawnAmount }}</text>
2025-05-21 10:40:41 +00:00
</view>
<view class="flex-row justify-between items-center group mt-15">
<text class="font_4 text_3">2025-10-20 18:45:15</text>
2025-05-29 13:31:35 +00:00
<text class="font_3" wx:if="{{ item.withdrawalStatus === 'processing' }}">{{ withdrawalStatus[0] }}</text>
<text class="font_3" wx:if="{{ item.withdrawalStatus === 'success' }}">{{ withdrawalStatus[1] }}</text>
<text class="font_3" wx:if="{{ item.withdrawalStatus === 'failed' }}">{{ withdrawalStatus[2] }}</text>
2025-05-21 10:40:41 +00:00
</view>
</view>
</view>
</view>
</view>
</view>