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
492 B
13 lines
492 B
import { createAPI } from "@/utils/httpRequest.js";
|
|
|
|
// 获取MR列表
|
|
export const getMrList = data => createAPI(`/pda/mr/getMrList`, 'post', data)
|
|
|
|
// 获取MR材料行列表
|
|
export const getMrMaterialLines = data => createAPI(`/pda/mr/getMrMaterialLines`, 'post', data)
|
|
|
|
// 扫描材料标签
|
|
export const scanMaterialLabel = data => createAPI(`/pda/mr/scanMaterialLabel`, 'post', data)
|
|
|
|
// 确认MR发料
|
|
export const confirmMrIssue = data => createAPI(`mr/confirmMrIssue`, 'post', data)
|