1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| import { ResPage, User } from "@/api/interface/index";
| import http from "@/api";
|
| /**
| * @name 人员聚集管理模块
| */
| // 获取人员聚集列表信息
| export const getGatherList = (params: User.ReqUserParams) => {
| return http.post<ResPage<User.ResUserList>>(`/Gather/FindGatherInfo`, params);
| };
|
| // 编辑聚集围栏
| export const editGather = (params: { id: string }) => {
| return http.post(`/Gather/update`, params);
| };
|
|