This commit is contained in:
liushuai
2019-09-05 10:33:39 +08:00
parent 653abcfc59
commit afcda77786
19 changed files with 4558 additions and 81 deletions

View File

@@ -0,0 +1,34 @@
import request from '@/utils/request'
export function SelectMachine() {
return request({
url: '',
method: 'post',
data: {
type: '1',
name: '发货管理_发货申请_发货单_机床_查询',
param: '机床图号=' + arguments[0]
}
})
}
export function ProcessOutsourcing() {
return request({
url: '',
method: 'post',
data: {
type: '1',
name: '工序外协_综合查询',
param: '机床流水号=' + arguments[0]
}
})
}
export function ProcessProportion() {
return request({
url: '',
method: 'post',
data: {
type: '1',
name: '工序外协_工序占比_综合查询',
param: '机床流水号=' + arguments[0]
}
})
}