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

1 week ago
1 week ago
1 week ago
  1. import http from 'libs/http'
  2. export const getLogList = (params: System.Page = { pageNum: 1, pageSize: 999 }): Promise<System.PageResponse<Log.LogItem>> => http.post(`/receive-record/page`, params)
  3. export const exportLog = (params: string): Promise<Blob> => http.get(`/receive-record/export`)
  4. export const delLog = (ids: string): Promise<null> => http.delete(`/receive-record/${ids}`)
  5. export const addLog = (params: Log.LogItem): Promise<null> => http.post(`/receive-record`, params)