修复功能(用户申请提现)
This commit is contained in:
@ -42,7 +42,10 @@
|
||||
<view class="flex-col list-item mt-13" wx:for="{{fundsChangeVOList}}" wx:for-item="item" wx:for-index="index" wx:key="index">
|
||||
<view class="flex-row">
|
||||
<text class="flex-1 font_4">{{item.projectName}}</text> <!-- 项目名称 -->
|
||||
<text class="shrink-0 self-start font_5 text_9 ml-21">{{item.changeAmount}}</text> <!-- 变动金额 -->
|
||||
|
||||
<!-- 判断变动金额的符号和字体颜色 -->
|
||||
<text class="shrink-0 self-start font_5 text_9 ml-21" style="color: {{item.changeAmount >= 0 ? '#FE2828' : '#10D466'}}">{{item.changeAmount >= 0 ? '+' : ''}}{{item.changeAmount}}
|
||||
</text>
|
||||
</view>
|
||||
<view class="mt-12 flex-row justify-between items-center">
|
||||
<text class="font_6 text_10">{{item.createTime}}</text> <!-- 创建时间 -->
|
||||
|
Reference in New Issue
Block a user