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
20 lines
1.0 KiB
import {createAPI} from "../../utils/httpRequest";
|
|
|
|
export const selectCollectList = (data)=>createAPI(`/collect/info/list`,'post',data)
|
|
|
|
export const saveCollect = (data)=>createAPI(`/collect/info/save`,'post',data)
|
|
|
|
export const removeCollect = (data)=>createAPI(`/collect/info/remove`,'post',data)
|
|
|
|
export const editCollect = (data)=>createAPI(`/collect/info/edit`,'post',data)
|
|
export const selectCollectListDetail = (data)=>createAPI(`/collect/detail/list`,'post',data)
|
|
|
|
export const saveCollectDetail = (data)=>createAPI(`/collect/detail/save`,'post',data)
|
|
|
|
export const removeCollectDetail = (data)=>createAPI(`/collect/detail/remove`,'post',data)
|
|
|
|
export const editCollectDetail = (data)=>createAPI(`/collect/detail/edit`,'post',data)
|
|
|
|
export const selectCollectRecordList = (data)=>createAPI(`/collect/record/list`,'post',data)
|
|
export const selectCollectHistoryList = (data)=>createAPI(`/collect/history/list`,'post',data)
|
|
export const selectCollectHistoryDetailList = (data)=>createAPI(`/collect/history/detail/list`,'post',data)
|