临期库存查询功能

This commit is contained in:
2023-04-13 10:43:33 +08:00
parent a00be0d40a
commit 3bfab9fc89
6 changed files with 809 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
import request from '@/utils/request'
export function add(data) {
return request({
url: '/api/pastivt',
method: 'post',
data
})
}
export function del(ids) {
return request({
url: '/api/pastivt',
method: 'delete',
data: ids
})
}
export function edit(data) {
return request({
url: '/api/pastivt',
method: 'put',
data
})
}
export default { add, edit, del }