奖金账户新增佣金发放和待发放及标签

This commit is contained in:
2023-02-13 15:31:12 +08:00
parent df9e850637
commit 37a2a0a7b7

View File

@@ -35,7 +35,9 @@
</view> </view>
<view class="time nowrap">{{item.created_at}}</view> <view class="time nowrap">{{item.created_at}}</view>
</view> </view>
<view class="price nowrap">{{item.amount}}</view> <view class="price nowrap">
<span :class="item.frozen.value == 0?'':'active'">{{item.amount}}</span>
</view>
</block> </block>
<block v-if="type === 'withdraws'"> <block v-if="type === 'withdraws'">
<view class="text"> <view class="text">
@@ -268,6 +270,9 @@
text-align: right; text-align: right;
font-weight: bold; font-weight: bold;
color: #9675FF; color: #9675FF;
.active{
color: $text-price;
}
} }
.type{ .type{
font-weight: bold; font-weight: bold;
@@ -281,7 +286,7 @@
span{ span{
font-size: 22rpx; font-size: 22rpx;
font-weight: normal; font-weight: normal;
background-color: rgba(green, 0.4); background-color: rgba(#9675FF, 0.4);
padding: 2rpx 20rpx; padding: 2rpx 20rpx;
border-radius: 40rpx; border-radius: 40rpx;
color: #fff; color: #fff;
@@ -290,7 +295,7 @@
top: -6rpx; top: -6rpx;
} }
.active{ .active{
background-color: rgba(red, 0.4); background-color: rgba($text-price, 0.4);
} }
} }
.remark{ .remark{