// 可视化服务相关接口 import $http from "@/utils/request"; export const getLayerList = (data) => $http({ method: "post", url: "/visualization/outPut/getLayerList", data, notShowLoading: true, }); export const getElementList = (data) => $http({ method: "post", url: "/visualization/outPut/getElementList", data, notShowLoading: true, }); export const getMenuList = (data) => $http({ method: "post", url: "/visualization/outPut/getMenuList", data, notShowLoading: true, }); export const getFooterNavigationList = (data) => $http({ method: "post", url: "/Visualization/FooterNavigation/GetList", data, notShowLoading: true, }); export const getDeptsTree = (data) => $http({ method: "post", url: "/System/Department/GetDeptsTree", data, notShowLoading: true, });