12345678910111213141516171819202122232425262728293031323334353637 |
- 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
- })
- }
|