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
34
35
36
| /*
| * @Author: shuishen 1109946754@qq.com
| * @Date: 2023-04-19 20:36:36
| * @LastEditors: shuishen 1109946754@qq.com
| * @LastEditTime: 2023-04-20 17:25:03
| * @FilePath: \web\bigScreen\src\api\singleSk\index.js
| * @Description:
| *
| * Copyright (c) 2023 by ${git_name_email}, All Rights Reserved.
| */
|
| import request from "@/router/axios";
|
| // 测站
| export const getStLgtdLttdInfo = (params) => {
| return request({
| url: "/services/1234567890ABCDEFGHIJKLMN/st_lgtd_lttd_info/api",
| method: "get",
| apiKey: true,
| params: {
| ...params,
| },
| });
| };
|
| // 水库基本信息
| export const getResLgtdLttdInfo = (params) => {
| return request({
| url: "/services/1234567890ABCDEFGHIJKLMN/res_lgtd_lttd_info/api",
| method: "get",
| apiKey: true,
| params: {
| ...params,
| },
| });
| };
|
|