fix: 修复团队列表分页重置和订单数字段显示问题

pull/177/head
YunaiV 2026-03-08 10:02:59 +08:00
parent 3c3ee616fd
commit 1346f8bf3b
1 changed files with 2 additions and 1 deletions

View File

@ -163,7 +163,7 @@
<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>
@ -320,6 +320,7 @@
function setType(e) {
state.pagination.list = [];
state.pagination.pageNo = 1;
state.level = e + '';
getTeamList();
}