流转
This commit is contained in:
27
api/reportFlow/index.js
Normal file
27
api/reportFlow/index.js
Normal file
@@ -0,0 +1,27 @@
|
||||
import request from '@/utils/request'
|
||||
// 获取工单信息
|
||||
export function GetWorkOrderDetail(params) {
|
||||
return request({
|
||||
url: '/mobile/reportflow/get_workorder_detail',
|
||||
method: 'get',
|
||||
params
|
||||
})
|
||||
}
|
||||
|
||||
// 查询工序报工详情
|
||||
export function GetProcessReportWorkDetail(params) {
|
||||
return request({
|
||||
url: '/mobile/reportflow/get_process_reportwork_detail',
|
||||
method: 'get',
|
||||
params
|
||||
})
|
||||
}
|
||||
|
||||
// 工序报工
|
||||
export function ProcessReportWork(params) {
|
||||
return request({
|
||||
url: '/mobile/reportflow/process_reportwork',
|
||||
method: 'get',
|
||||
params
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user