|
|
|
@ -25,10 +25,10 @@
|
|
|
|
|
<view style="padding: 0 30rpx">
|
|
|
|
|
<view class="nav acea-row row-around l1">
|
|
|
|
|
<view :class="state.level == 1 ? 'item on' : 'item'" @click="setType(1)">
|
|
|
|
|
一级({{ state.summary.firstBrokerageUserCount || 0 }})
|
|
|
|
|
直属下级({{ state.summary.firstBrokerageUserCount || 0 }})
|
|
|
|
|
</view>
|
|
|
|
|
<view :class="state.level == 2 ? 'item on' : 'item'" @click="setType(2)">
|
|
|
|
|
二级({{ state.summary.secondBrokerageUserCount || 0 }})
|
|
|
|
|
我的团队({{ state.summary.secondBrokerageUserCount || 0 }})
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view
|
|
|
|
@ -141,11 +141,11 @@
|
|
|
|
|
<text class="num font-color">{{ item.brokerageUserCount || 0 }} </text>人
|
|
|
|
|
</view>
|
|
|
|
|
<view>
|
|
|
|
|
<text class="num">{{ item.orderCount || 0 }}</text
|
|
|
|
|
<text class="num">{{ item.brokerageOrderCount || 0 }}</text
|
|
|
|
|
>单</view
|
|
|
|
|
>
|
|
|
|
|
<view>
|
|
|
|
|
<text class="num">{{ item.brokeragePrice || 0 }}</text
|
|
|
|
|
<text class="num">{{ Number(item.brokeragePrice|| 0 )/100 }}</text
|
|
|
|
|
>元
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
@ -282,7 +282,7 @@
|
|
|
|
|
let { code, data } = await BrokerageApi.getBrokerageUserChildSummaryPage({
|
|
|
|
|
pageNo: state.pagination.pageNo,
|
|
|
|
|
pageSize: state.pagination.pageSize,
|
|
|
|
|
level: state.level,
|
|
|
|
|
level: state.level== 1 ? state.level : '',
|
|
|
|
|
'sortingField.order': state.isAsc,
|
|
|
|
|
'sortingField.field': state.sortKey,
|
|
|
|
|
nickname: state.nickname,
|
|
|
|
|