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.

20 lines
1.0 KiB

  1. import {createAPI} from "../../utils/httpRequest";
  2. export const selectCollectList = (data)=>createAPI(`/collect/info/list`,'post',data)
  3. export const saveCollect = (data)=>createAPI(`/collect/info/save`,'post',data)
  4. export const removeCollect = (data)=>createAPI(`/collect/info/remove`,'post',data)
  5. export const editCollect = (data)=>createAPI(`/collect/info/edit`,'post',data)
  6. export const selectCollectListDetail = (data)=>createAPI(`/collect/detail/list`,'post',data)
  7. export const saveCollectDetail = (data)=>createAPI(`/collect/detail/save`,'post',data)
  8. export const removeCollectDetail = (data)=>createAPI(`/collect/detail/remove`,'post',data)
  9. export const editCollectDetail = (data)=>createAPI(`/collect/detail/edit`,'post',data)
  10. export const selectCollectRecordList = (data)=>createAPI(`/collect/record/list`,'post',data)
  11. export const selectCollectHistoryList = (data)=>createAPI(`/collect/history/list`,'post',data)
  12. export const selectCollectHistoryDetailList = (data)=>createAPI(`/collect/history/detail/list`,'post',data)