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