调整业绩账户,新增微信支付渠道
This commit is contained in:
@@ -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>类 型</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>客 户</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>时 间</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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user