zhitong.yu
8 天以前 378d781e6f35f89652aa36e079a8b7fc44cea77e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import { ResPage, User } from "@/api/interface/index";
import http from "@/api";
 
/**
 * @name 部门图标管理模块
 */
// 获取二维地图列表信息
export const getTwoMapList = (params: User.ReqUserParams) => {
  return http.post<ResPage<User.ResUserList>>(`/TwoMap/FindMapInfo`, params);
};
 
//获取登录用户所属公司地图(下拉)
export const FindUserCompanyMap = () => {
  return http.post(`/TwoMap/FindUserCompanyMap`);
};
 
//获取指定层平面地图
export const FindFloorMap = (params: { floor: string }) => {
  return http.post(`/TwoMap/FindFloorMap`, params);
};
 
export const FindUserCompanyMapSelect = () => {
  return http.post(`/TwoMap/FindUserCompanyMapSelect`);
};