import axios from '../http.js';
|
|
export default {
|
/**
|
* 管片出库接口
|
*/
|
// 查询管片出库列表
|
searchPipeOutList: (params) =>
|
axios.post('/materials/pipeOut/pipeOutList', params),
|
// 管片出库扫码
|
pipeOutStoreScan: (params) =>
|
axios.post('/materials/pipeOut/pipeOutCheck', params),
|
// 管片出库信息提交
|
submitPipeOutStore: (params) =>
|
axios.post('/materials/pipeOut/pipeOutInsert', params),
|
// 获取管片信息详情
|
getPipeDetailInfo: (params) =>
|
axios.post('/materials/pipeOut/pipeOutPipeInfo', params),
|
// 获取车辆信息详情
|
getCarPipeDetailInfo: (params) =>
|
axios.get('/materials/pipeOut/pipeOutInfo', params),
|
// 获取全部车辆信息
|
getAllCarData: () =>
|
axios.get('/engineering/car/carPull'),
|
// 获取全部收获人
|
getAllConsigneeData: () =>
|
axios.get('/engineering/reciver/reciverInfo'),
|
// 获取车辆详情信息
|
getCarInfo: (params) =>
|
axios.get('/engineering/car/carInfo', params),
|
//GPS设备下拉框
|
getGpsDeviceLists: params =>
|
axios.post('/materials/gpsDevice/findAll', params),
|
// 获取项目信息
|
searchProjects: params =>
|
axios.post('/engineering/project/projectList', params),
|
}
|