12345678910111213141516171819202122232425262728293031 |
- import request from '@/utils/request'
- // 获取左侧
- export function getRy() {
- return request({
- url: '/center-firecontrol/VisuForestCloudMapController/getRy',
- method: 'post',
- })
- }
- // 获取左侧人员列表
- export function getForestLeader(linJob,linType) {
- return request({
- url: '/center-firecontrol/VisuForestLeaderController/getForestLeader?linJob='+linJob+"&linType="+linType,
- method: 'get',
- })
- }
- // 点击左侧人员列表获取轨迹
- export function getLeaderTrack(trackById) {
- return request({
- url: '/center-firecontrol/VisuForestLeaderController/getLeaderTrack?trackById='+trackById,
- method: 'get',
- })
- }
- // 巡林计划
- export function getPlanList(trackById) {
- return request({
- url: '/center-firecontrol/VisuForestLeaderController/getPlanList',
- method: 'get',
- })
- }
|