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 getAnchorList = (params: User.ReqUserParams) => {
| return http.post<ResPage<User.ResUserList>>(`/Anchor/FindAnchorInfo`, params);
| };
|
| //首页平台展示围栏
| export const FindScreenAnchor = () => {
| return http.post(`/Anchor/FindScreenAnchor`);
| };
|
|