plm前端
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.

37 lines
1.2 KiB

2 years ago
  1. import { createAPI } from "@/utils/httpRequest.js";
  2. /**
  3. * 客户信息列表查询
  4. * @param data
  5. * @returns {*}
  6. */
  7. export const customerInformationSearch = data => createAPI(`/plm/customerInformation/customerInformationSearch`,'post',data)
  8. /**
  9. * 客户信息新增
  10. * @param data
  11. * @returns {*}
  12. */
  13. export const customerInformationSave = data => createAPI(`/plm/customerInformation/customerInformationSave`,'post',data)
  14. /**
  15. * 客户信息编辑
  16. * @param data
  17. * @returns {*}
  18. */
  19. export const customerInformationEdit = data => createAPI(`/plm/customerInformation/customerInformationEdit`,'post',data)
  20. /**
  21. * 客户信息删除
  22. * @param data
  23. * @returns {*}
  24. */
  25. export const customerInformationDelete = data => createAPI(`/plm/customerInformation/customerInformationDelete`,'post',data)
  26. export const customerInformationSearchForCheck= data => createAPI(`/plm/customerInformation/customerInformationSearchForCheck`,'post',data)
  27. /**
  28. * 客户组ID输入校验
  29. * @param data
  30. * @returns {*}
  31. */
  32. export const checkCustomerGroup = data => createAPI(`/plm/customerInformation/checkCustomerGroup`,'post',data)
  33. export const queryCustomer = (data) => createAPI(`/customer`,'post',data)