优化入库管理的查询

This commit is contained in:
2026-01-21 18:57:02 +08:00
parent cf0cb72aa5
commit a83b0c2589
2 changed files with 4 additions and 3 deletions

View File

@@ -1,11 +1,11 @@
import request from '@/utils/request'
// 查询库存单据列表
export function listBill(query) {
export function listBill(data) {
return request({
url: '/wisdom/bill/list',
method: 'get',
params: query
method: 'POST',
data: data
})
}