李旭东
2023-10-23 37bff611a02107e151a7a9f82b624caff9c7005b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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),
}