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.
11 lines
777 B
11 lines
777 B
import {createAPI} from '../../utils/httpRequest'
|
|
|
|
export const exportPallet = (data) => createAPI(`/catch/pallet/export`,'post',data,'download')
|
|
|
|
export const savePallet = (data) => createAPI(`/catch/pallet/save`,'post',data)
|
|
export const saveBatchPallet = (data) => createAPI(`/catch/pallet/save/batch`,'post',data)
|
|
export const removePallet = (data) => createAPI(`/catch/pallet/remove`,'post',data)
|
|
export const removeAllPallet = (data) => createAPI(`/catch/pallet/remove/all`,'post',data)
|
|
export const removePalletById = (data) => createAPI(`/catch/pallet/remove/${data.id}`,'post',data)
|
|
export const queryPallet = (data) => createAPI(`/catch/pallet/list`,'post',data)
|
|
export const queryPalletPage = (data) => createAPI(`/catch/pallet/${data.no}/${data.size}`,'post',data)
|