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.

36 lines
902 B

  1. import { createAPI } from "@/utils/httpRequest.js";
  2. /**
  3. * 单位信息列表查询
  4. * @param data
  5. * @returns {*}
  6. */
  7. export const umInformationSearch = data => createAPI(`/plm/umInformation/umInformationSearch`,'post',data)
  8. /**
  9. * 查询单位列表
  10. * @param data
  11. * @returns {*}
  12. */
  13. export const searchUmInformationList = data =>createAPI(`/plm/umInformation/searchUmInformationList`,'get',data);
  14. /**
  15. * 单位信息新增
  16. * @param data
  17. * @returns {*}
  18. */
  19. export const umInformationSave = data => createAPI(`/plm/umInformation/umInformationSave`,'post',data)
  20. /**
  21. * 单位信息编辑
  22. * @param data
  23. * @returns {*}
  24. */
  25. export const umInformationEdit = data => createAPI(`/plm/umInformation/umInformationEdit`,'post',data)
  26. /**
  27. * 单位信息删除
  28. * @param data
  29. * @returns {*}
  30. */
  31. export const umInformationDelete = data => createAPI(`/plm/umInformation/umInformationDelete`,'post',data)