moreShopAdmin/src/api/inventory_warehouse.ts

30 lines
1.0 KiB
TypeScript
Raw Normal View History

import request from '@/utils/request'
// 仓库盘存列表
export function apiInventoryWarehouseLists(params: any) {
return request.get({ url: '/inventory_warehouse/inventorywarehouse/lists', params })
}
// 添加仓库盘存
export function apiInventoryWarehouseAdd(params: any) {
return request.post({ url: '/inventory_warehouse/inventorywarehouse/add', params })
}
// 编辑仓库盘存
export function apiInventoryWarehouseEdit(params: any) {
return request.post({ url: '/inventory_warehouse/inventorywarehouse/edit', params })
}
// 删除仓库盘存
export function apiInventoryWarehouseDelete(params: any) {
return request.post({ url: '/inventory_warehouse/inventorywarehouse/delete', params })
}
// 仓库盘存详情
export function apiInventoryWarehouseDetail(params: any) {
return request.get({ url: '/inventory_warehouse/inventorywarehouse/detail', params })
}
export function apiInventoryWarehouseEnterNums(params: any) {
return request.post({ url: '/inventory_warehouse/inventorywarehouse/enter_nums', params })
}