12345678910111213141516171819202122 |
- import request from '@/utils/request';
- // 列表信息
- export const getMobileWorkstationList = (data) => {
- return request({
- url: '/api/gateway/v2/get_mobile_workstation_info',
- method: 'post',
- data: data
- });
- };
- // 列表信息
- export const getMobileWorkstationTrajectory = (id) => {
- return request({
- url: '/api/gateway/v2/get_mobile_workstation_trajectory',
- method: 'post',
- data: {
- query: {
- id: id
- }
- }
- });
- };
|