更新:修改金额列表和积分列表显示细节

This commit is contained in:
2025-12-01 18:02:55 +08:00
parent 23de3944dc
commit fecbb79508
5 changed files with 57 additions and 39 deletions

View File

@@ -9,11 +9,11 @@
<view>{{$t('order.recharge')}}</view>
<view><wd-icon name="arrow-right" size="16px" color="#fff"/></view>
</view>
<view class="title">{{$t('order.rechargeConsumptionList')}}</view>
<view class="title">{{$t('order.pointsRecord')}}</view>
<view class="recharge-record-block" v-for="(item, index) in bookList" :key="index">
<view class="recharge-record-block-row">{{item.remark.slice(0, (item.remark.indexOf(',')))}}<text :class="item.actType === 1 ? 'text1' : 'text2'" >{{item.actType === 1 ? '' : '+'}}{{item.changeAmount}}</text></view>
<view class="time">{{item.createTime}}</view>
<view>{{item.remark.slice((item.remark.indexOf(','))+1)}}</view>
<view style="font-size: 20rpx;">{{item.remark.slice((item.remark.indexOf(','))+1)}}</view>
</view>
</view>
</z-paging>
@@ -111,7 +111,7 @@
color: #ff0000;
}
.text2{
color: #00ff00;
color: #228B22;
}
}
}