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

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