feat: 视图图表类型增加地图

This commit is contained in:
fit2cloud-chenyw
2021-07-21 17:12:40 +08:00
parent b03598db1d
commit f0a2532b51
12 changed files with 239 additions and 27 deletions

View File

@@ -0,0 +1,17 @@
import request from '@/utils/request'
export const areaMapping = () => {
return request({
url: '/api/map/areaEntitys/0',
method: 'get',
loading: true
})
}
export function geoJson(areaCode) {
return request({
url: '/api/map/resourceFull/' + areaCode,
method: 'get',
loading: true
})
}