yellowtaotao hace 3 años
padre
commit
1c25274fca
Se han modificado 1 ficheros con 5 adiciones y 5 borrados
  1. 5 5
      src/views/user/userManagementList.vue

+ 5 - 5
src/views/user/userManagementList.vue

@@ -186,12 +186,12 @@ export default {
     // 查询:已有账号列表
     // 查询:已有账号列表
     getAdminListFun() {
     getAdminListFun() {
       this.loading = true;
       this.loading = true;
-      // let params = {
-      //   page: this.pagination.current,
-      //   size: this.pagination.pageSize,
-      // };
+      let params = {
+        page: this.pagination.current,
+        size: this.pagination.pageSize,
+      };
       this.$_http
       this.$_http
-        .get(this.$_API.INTERFACE_GET_USER_LIST)
+        .get(this.$_API.INTERFACE_GET_USER_LIST, { params })
         .then((res) => {
         .then((res) => {
           this.tableData = res.data.content;
           this.tableData = res.data.content;
           this.pagination.total = res.data.totalElements; // 总条数
           this.pagination.total = res.data.totalElements; // 总条数