MobilePlatform.ts 465 B

12345678910111213141516171819202122
  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. method: 'post',
  7. data: data
  8. });
  9. };
  10. // 列表信息
  11. export const getMobileWorkstationTrajectory = (id) => {
  12. return request({
  13. url: '/api/gateway/v2/get_mobile_workstation_trajectory',
  14. method: 'post',
  15. data: {
  16. query: {
  17. id: id
  18. }
  19. }
  20. });
  21. };