调整业绩账户,新增微信支付渠道

This commit is contained in:
唐明明
2023-03-07 14:48:29 +08:00
parent df747b9f0a
commit c40a262154
7 changed files with 165 additions and 55 deletions

View File

@@ -25,9 +25,26 @@
</view>
<block v-if="list.length > 0">
<view class="log-flex" v-for="(item, index) in list" :key="index">
<view class="type nowrap">{{item.type}}</view>
<view class="perf nowrap">{{item.perf}}</view>
<view class="time nowrap">{{item.created_at}}</view>
<view class="log-flex-item">
<label>&nbsp;&nbsp;&nbsp;&nbsp;</label>
<view class="log-flex-val nowrap">{{item.type}}</view>
</view>
<view class="log-flex-item">
<label>服务费</label>
<view class="log-flex-val nowrap">{{item.perf}}</view>
</view>
<view class="log-flex-item">
<label>&nbsp;&nbsp;&nbsp;&nbsp;</label>
<view class="log-flex-val nowrap">{{item.nick_name || '-'}}</view>
</view>
<view class="log-flex-item">
<label>推荐人</label>
<view class="log-flex-val nowrap">{{item.parent_name || '-'}}</view>
</view>
<view class="log-flex-item">
<label>&nbsp;&nbsp;&nbsp;&nbsp;</label>
<view class="log-flex-val nowrap">{{item.created_at}}</view>
</view>
</view>
</block>
<block v-else>
@@ -176,23 +193,21 @@
margin: 0 -30rpx 10rpx;
}
.log-flex{
padding: 5rpx 0;
display: flex;
justify-content: space-between;
line-height: 70rpx;
align-items: center;
font-size: 30rpx;
color: #666666;
.type{
width: 150rpx;
border-bottom: solid 1rpx #F6F6F6;
padding: 20rpx 0;
&:last-child{border-bottom: none;}
&-item{
line-height: 54rpx;
font-size: 32rpx;
display: flex;
label{
color: gray;
width: 100rpx;
}
}
.time{
width: 300rpx;
&-val{
text-align: right;
}
.perf{
width: calc( 100% - 450rpx);
text-align: center;
width: calc(100% - 100rpx);
}
}
}