import req from '@/utils/request.js' /** * 查询外协单 * @param {Object} data */ export function getDayworkByCarrierCode(data) { return req.request({ url: '/business/switch/getDayworkByCarrierCode', method: 'POST', data: data }) } /** * 获取所有的工段 */ export function getAllDeptList() { return req.request({ url: '/business/switch/listAllDepts', method: 'GET' }) } export function turnoverAll(data) { return req.request({ url: '/business/switch/turnoverAll', method: 'POST', data: data }) } export function turnoverOutsourceAll(data) { return req.request({ url: '/business/switch/turnoverOutsourceAll', method: 'POST', data: data }) }