连接了我的项目,我的抽成
This commit is contained in:
@ -3,14 +3,16 @@
|
||||
<view class="flex-col section_2">
|
||||
<text class="self-start text">账单明细</text>
|
||||
<view class="flex-col self-stretch">
|
||||
<view class="flex-col list-item" wx:for="{{items}}" wx:for-item="item" wx:for-index="index" wx:key="index">
|
||||
<view class="flex-col list-item" wx:for="{{withdrawalList}}" wx:for-item="item" wx:for-index="index" wx:key="index">
|
||||
<view class="flex-row justify-between items-baseline">
|
||||
<text class="font text_2">银行卡</text>
|
||||
<text class="font_2">¥2.00</text>
|
||||
<text class="font_2">¥{{ item.withdrawnAmount }}</text>
|
||||
</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>
|
||||
<text class="font_3">待审核</text>
|
||||
<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>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
Reference in New Issue
Block a user