1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
| /*
| * @Author: shuishen 1109946754@qq.com
| * @Date: 2023-04-21 15:03:47
| * @LastEditors: shuishen 1109946754@qq.com
| * @LastEditTime: 2023-04-21 15:05:08
| * @FilePath: \web\bigScreen\src\api\detail\index.js
| * @Description:
| *
| * Copyright (c) 2023 by ${git_name_email}, All Rights Reserved.
| */
| import request from "@/router/axios";
|
| // 测站
| export const getSkSiteDetail = (params) => {
| return request({
| url: "/services/1234567890ABCDEFGHIJKLMN/att_res_base/api",
| method: "get",
| apiKey: true,
| params: {
| ...params,
| },
| });
| };
|
| // 判断是否有图像站和视频站
| export const getDetailsMenu = (params) => {
| return request({
| url: "/services/1234567890ABCDEFGHIJKLMN/res_func_detail/api",
| method: "get",
| apiKey: true,
| params,
| });
| };
|
|