田源
2024-06-26 0f8dc2f32547caa547dea9a7c06edac0192437d5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import request from '@/router/axios';
 
// 列表查询
export function getDataUsers(page,limit,params) {
  return request({
    url: "/api/userQueryController/getDataGridUsers",
    method: "get",
    params:{
      page,
      limit,
      ...params
    }
  });
}
 
// 停用启用
export function stopUser(data) {
  return request({
    url: "/api/userQueryController/stopUser",
    method: "post",
    data:data
  });
}