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.
8 lines
486 B
8 lines
486 B
import http from 'libs/http'
|
|
|
|
export const getLogList = (params: System.Page = { pageNum: 1, pageSize: 999 }): Promise<System.PageResponse<Log.LogItem>> => http.post(`/receive-record/page`, params)
|
|
|
|
export const exportLog = (params: string): Promise<Blob> => http.get(`/receive-record/export`)
|
|
|
|
export const delLog = (ids: string): Promise<null> => http.delete(`/receive-record/${ids}`)
|
|
export const addLog = (params: Log.LogItem): Promise<null> => http.post(`/receive-record`, params)
|