开发分支

This commit is contained in:
唐明明
2023-03-14 17:19:21 +08:00
parent a24fe7a84c
commit 9eb1f97e4c
12 changed files with 234 additions and 54 deletions

View File

@@ -41,7 +41,7 @@
</block>
<block v-if="type === 'withdraws'">
<view class="text">
<view class="type nowrap"><text>[{{item.status.status_text}}]</text>{{item.title || '-'}}</view>
<view class="withdraws-type nowrap"><span>{{item.status.status_text}}</span>{{item.title || '-'}}</view>
<view class="remark nowrap" v-if="item.remark != null">{{item.remark || '-'}}</view>
<view class="time nowrap">{{item.created_at}}</view>
</view>
@@ -278,11 +278,11 @@
font-weight: bold;
font-size: 30rpx;
color: #666666;
text{
font-weight: normal;
padding-right: 10rpx;
color: $main-color;
}
// text{
// font-weight: normal;
// padding-right: 10rpx;
// color: $main-color;
// }
span{
font-size: 22rpx;
font-weight: normal;
@@ -298,6 +298,20 @@
background-color: rgba(#d90017, 0.4);
}
}
.withdraws-type{
font-weight: bold;
font-size: 30rpx;
color: #666666;
span{
font-size: 22rpx;
font-weight: normal;
background-color: rgba(#8E6AFF, 0.4);
padding: 2rpx 20rpx;
border-radius: 40rpx;
color: #fff;
margin-right: 20rpx;
}
}
.remark{
font-size: 28rpx;
}