Explorar el Código

fix(销售服务管理): 修正用户列表查询分页参数,将pageSize从-1改为1000

yusheng hace 5 meses
padre
commit
4fca707920
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/views/salesServiceManagement/components/info.vue

+ 1 - 1
src/views/salesServiceManagement/components/info.vue

@@ -1617,7 +1617,7 @@ export default {
       try {
         const res = await getUserPage({
           pageNum: 1,
-          pageSize: -1
+          pageSize:1000
         });
         this.userList = res?.list || [];
       } catch (error) {