leader.js 825 B

12345678910111213141516171819202122232425262728293031
  1. import request from '@/utils/request'
  2. // 获取左侧
  3. export function getRy() {
  4. return request({
  5. url: '/center-firecontrol/VisuForestCloudMapController/getRy',
  6. method: 'post',
  7. })
  8. }
  9. // 获取左侧人员列表
  10. export function getForestLeader(linJob,linType) {
  11. return request({
  12. url: '/center-firecontrol/VisuForestLeaderController/getForestLeader?linJob='+linJob+"&linType="+linType,
  13. method: 'get',
  14. })
  15. }
  16. // 点击左侧人员列表获取轨迹
  17. export function getLeaderTrack(trackById) {
  18. return request({
  19. url: '/center-firecontrol/VisuForestLeaderController/getLeaderTrack?trackById='+trackById,
  20. method: 'get',
  21. })
  22. }
  23. // 巡林计划
  24. export function getPlanList(trackById) {
  25. return request({
  26. url: '/center-firecontrol/VisuForestLeaderController/getPlanList',
  27. method: 'get',
  28. })
  29. }