/* * @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, }, }); };