备件库存查询

This commit is contained in:
2022-06-28 15:57:03 +08:00
parent 5c7537009b
commit 645cf8cfe5
8 changed files with 679 additions and 3 deletions

View File

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