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
808 B

  1. import { createAPI } from "@/utils/httpRequest.js";
  2. /**
  3. * 客户项目信息列表查询
  4. * @param data
  5. * @returns {*}
  6. */
  7. export const projectInformationSearch = data => createAPI(`/plm/projectInformation/projectInformationSearch`,'post',data)
  8. /**
  9. * 客户项目信息新增
  10. * @param data
  11. * @returns {*}
  12. */
  13. export const projectInformationSave = data => createAPI(`/plm/projectInformation/projectInformationSave`,'post',data)
  14. /**
  15. * 客户项目信息编辑
  16. * @param data
  17. * @returns {*}
  18. */
  19. export const projectInformationEdit = data => createAPI(`/plm/projectInformation/projectInformationEdit`,'post',data)
  20. /**
  21. * 客户项目信息删除
  22. * @param data
  23. * @returns {*}
  24. */
  25. export const projectInformationDelete = data => createAPI(`/plm/projectInformation/projectInformationDelete`,'post',data)