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.

27 lines
760 B

  1. import { createAPI } from "@/utils/httpRequest.js";
  2. /**
  3. * 客户联系人列表查询
  4. * @param data
  5. * @returns {*}
  6. */
  7. export const customerContactSearch = data => createAPI(`/plm/customerContact/customerContactSearch`,'post',data)
  8. /**
  9. * 客户联系人新增
  10. * @param data
  11. * @returns {*}
  12. */
  13. export const customerContactSave = data => createAPI(`/plm/customerContact/customerContactSave`,'post',data)
  14. /**
  15. * 客户联系人编辑
  16. * @param data
  17. * @returns {*}
  18. */
  19. export const customerContactEdit = data => createAPI(`/plm/customerContact/customerContactEdit`,'post',data)
  20. /**
  21. * 客户联系人删除
  22. * @param data
  23. * @returns {*}
  24. */
  25. export const customerContactDelete = data => createAPI(`/plm/customerContact/customerContactDelete`,'post',data)