增加入库记录页面,同时修正三组入库的时间问题
This commit is contained in:
18
inventory-web/src/api/inbound/inbound_summary.ts
Normal file
18
inventory-web/src/api/inbound/inbound_summary.ts
Normal file
@ -0,0 +1,18 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
export interface InboundSummaryQuery {
|
||||
page: number
|
||||
per_page: number
|
||||
keyword?: string
|
||||
start_date?: string
|
||||
end_date?: string
|
||||
source_type?: string
|
||||
}
|
||||
|
||||
export function getInboundSummaryList(params: InboundSummaryQuery) {
|
||||
return request({
|
||||
url: '/v1/inbound/summary/list',
|
||||
method: 'get',
|
||||
params
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user