MobilePlatform.ts 533 B

1234567891011121314151617181920212223
  1. import request from '@/utils/request';
  2. // 列表信息
  3. export const getMobileWorkstationList = (data) => {
  4. return request({
  5. // url: '/api/gateway/v2/get_mobile_workstation_info',
  6. url: '/api/videoResource/avcon/get_mobile_workstation_info',
  7. method: 'post',
  8. data: data
  9. });
  10. };
  11. // 轨迹信息
  12. export const getMobileWorkstationTrajectory = (id) => {
  13. return request({
  14. url: '/api/gateway/v2/get_mobile_workstation_trajectory',
  15. method: 'post',
  16. data: {
  17. query: {
  18. id: id
  19. }
  20. }
  21. });
  22. };