|
@@ -53,3 +53,25 @@ export function rotation(lng,lat,list) {
|
|
|
}
|
|
|
})
|
|
|
}
|
|
|
+// 获取重点区域
|
|
|
+export function getRegionalFlag(id) {
|
|
|
+ return request({
|
|
|
+ url: '/center-fire/VisuForestCloudMapController/getRegionalFlag/'+id,
|
|
|
+ method: 'get',
|
|
|
+ })
|
|
|
+}
|
|
|
+//根据部门id查询部门及部门以下的数据,没有则默认查询所有
|
|
|
+export function getSensorListByDeptId(deptId) {
|
|
|
+ return request({
|
|
|
+ url: '/center-fire/VisuForestMonitorCenterController/getSensorListByDeptId?deptId=' + deptId,
|
|
|
+ method: 'get',
|
|
|
+ })
|
|
|
+}
|
|
|
+//根据部门id查询部门及部门以下的数据,没有则默认查询所有
|
|
|
+export function getDlblistBydeptId(deptId) {
|
|
|
+ return request({
|
|
|
+ url: '/center-fire/VisuForestMonitorCenterController/getDlblistBydeptId?deptId=' + deptId,
|
|
|
+ method: 'get',
|
|
|
+ })
|
|
|
+}
|
|
|
+
|