...
|
...
|
@@ -2,13 +2,15 @@ import axios from 'axios' |
|
|
import http from "../http";
|
|
|
|
|
|
let baseServiceURL = 'wms-server-warehouse'
|
|
|
const serviceName = '/cloud-user-center'
|
|
|
|
|
|
|
|
|
//车辆定位
|
|
|
export const selectVehicle = params => { return axios.get(`${baseServiceURL}/map/location/lastlocation`, { params: params }); };
|
|
|
//出任务
|
|
|
export const insertSelective = params => { return http.post(`${baseServiceURL}/map/location/insertSelective`, params); };
|
|
|
|
|
|
//获取用户列表
|
|
|
export const getUserList = params => { return http.post(`${serviceName}/crm/list`, params) };
|
|
|
|
|
|
//车辆轨迹
|
|
|
export const historyTrack = params => { return axios.get(`${baseServiceURL}/map/location/historyTrack`, { params: params }); };
|
...
|
...
|
|