|
@@ -77,10 +77,10 @@
|
|
|
// 获取列表
|
|
|
const statisticsList=()=>{
|
|
|
if(tabType.value==1){
|
|
|
- // 销售组排名
|
|
|
+ // 销售组排名 - 无分页
|
|
|
getSellerGroupStatisticsList(searchParams).then(res=>{
|
|
|
- statisticsData.tableData = res.data.list || []
|
|
|
- statisticsData.total = res.data.page.total || 0
|
|
|
+ statisticsData.tableData = res.data || []
|
|
|
+ statisticsData.total = 0
|
|
|
})
|
|
|
}else if(tabType.value==2){
|
|
|
|
|
@@ -237,7 +237,7 @@
|
|
|
</el-table>
|
|
|
<!-- 分页 -->
|
|
|
<m-page :pageSize="searchParams.page_size" :page_no="searchParams.current"
|
|
|
- style="display: flex;justify-content: flex-end;margin-top: 20px;"
|
|
|
+ style="display: flex;justify-content: flex-end;margin-top: 20px;"
|
|
|
:total="statisticsData.total" @handleCurrentChange="changePageNo" @handleSizeChange="changePageSize"/>
|
|
|
</div>
|
|
|
</div>
|