22 lines
549 B
TypeScript
22 lines
549 B
TypeScript
|
|
import request from '@/utils/request';
|
||
|
|
|
||
|
|
// 获取图例列表
|
||
|
|
export function getModuleMapLegendList(params?: { moduleId?: string }) {
|
||
|
|
const url = params?.moduleId
|
||
|
|
? `/api/wmp-sys-server/mapLegend/getModuleMapLegendList?moduleId=${params.moduleId}`
|
||
|
|
: '/api/wmp-sys-server/mapLegend/getModuleMapLegendList';
|
||
|
|
return request({
|
||
|
|
url,
|
||
|
|
method: 'get'
|
||
|
|
});
|
||
|
|
}
|
||
|
|
|
||
|
|
// 获取地图配置列表
|
||
|
|
export function getMapList(data: any) {
|
||
|
|
return request({
|
||
|
|
url: '/api/wmp-sys-server/mapmodule/getMapData',
|
||
|
|
method: 'post',
|
||
|
|
data
|
||
|
|
});
|
||
|
|
}
|