You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
545 B
13 lines
545 B
import { createAPI } from '@/utils/httpRequest.js'
|
|
//工具上机
|
|
export const countToolUsedQty = data => createAPI('schedule/countToolUsedQty', 'POST', data)
|
|
|
|
//检查工具实例编码
|
|
export const checkConnectToolInstanceId = data => createAPI('schedule/checkConnectToolInstanceId', 'POST', data)
|
|
|
|
//工具上机
|
|
export const connectToolInstanceId = data => createAPI('schedule/connectToolInstanceId', 'POST', data)
|
|
|
|
// 获取不良代码的信息
|
|
export const reportDefectCode = data => createAPI('schedule/reportDefectCode', 'POST', data)
|
|
|