123456789101112131415161718192021222324252627282930313233343536373839404142 |
- // 可视化服务相关接口
- 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,
- });
|