...
|
...
|
@@ -20,7 +20,7 @@ export const selectByliscenNo = params => { return axios.get(`${baseServiceURL}/ |
|
|
//出任务
|
|
|
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 getUserList = (data,params) => { return http.post(`${serviceName}/crm/list`, data, params) };
|
|
|
|
|
|
//车辆轨迹
|
|
|
export const historyTrack = params => { return axios.get(`${baseServiceURL}/map/location/historyTrack`, { params: params }); };
|
...
|
...
|
|