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

9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
  1. import { createAPI } from "@/utils/httpRequest.js";
  2. // 获取MR列表
  3. export const getMrList = data => createAPI(`/pda/mr/getMrList`, 'post', data)
  4. // 获取MR材料行列表
  5. export const getMrMaterialLines = data => createAPI(`/pda/mr/getMrMaterialLines`, 'post', data)
  6. // 扫描材料标签
  7. export const scanMaterialLabel = data => createAPI(`/pda/mr/scanMaterialLabel`, 'post', data)
  8. // 确认MR发料
  9. export const confirmMrIssue = data => createAPI(`mr/confirmMrIssue`, 'post', data)