乐天mes前端
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.

21 lines
1.0 KiB

4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
  1. import { createAPI } from "@/utils/httpRequest.js";
  2. //获取栈板数据
  3. export const getPalletData=data => createAPI(`/pallet/getPalletData`,'post',data)
  4. //保存栈板数据
  5. export const savePallet=data => createAPI(`/pallet/savePallet`,'post',data)
  6. //保存栈板数据
  7. export const savePalletAdds=data => createAPI(`/pallet/savePalletAdds`,'post',data)
  8. export const printPallet=data => createAPI(`/pallet/printPallet`,'post',data)
  9. export const printSerialNo=data => createAPI(`/pallet/printSerialNo`,'post',data)
  10. //获取位置数据
  11. export const getLocationData=data => createAPI(`/pallet/getLocationData`,'post',data)
  12. //保存位置数据
  13. export const saveLocationData=data => createAPI(`/pallet/saveLocationData`,'post',data)
  14. //删除位置数据
  15. export const deleteLocationData=data => createAPI(`/pallet/deleteLocationData`,'post',data)
  16. export const getScheduleSerialNo=data => createAPI(`/pallet/getScheduleSerialNo`,'post',data)
  17. export const deletePalletNo=data => createAPI(`/pallet/deletePalletNo`,'post',data)