1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- import request from '@/utils/request'
- // 查询仓库列表
- export function listWarehouse(query) {
- return request({
- url: '/basicdata/warehouse/list',
- method: 'get',
- params: query
- })
- }
- // 查询仓库详细
- export function getWarehouse(fId) {
- return request({
- url: '/basicdata/warehouse/' + fId,
- method: 'get'
- })
- }
- // 新增仓库
- export function addWarehouse(data) {
- return request({
- url: '/basicdata/warehouse',
- method: 'post',
- data: data
- })
- }
- // 修改仓库
- export function updateWarehouse(data) {
- return request({
- url: '/basicdata/warehouse',
- method: 'put',
- data: data
- })
- }
- // 仓库状态修改
- export function changeWareStatus(fId, fStatus) {
- const data = {
- fId,
- fStatus
- }
- return request({
- url: '/basicdata/warehouse',
- method: 'put',
- data: data
- })
- }
- // 删除仓库
- export function delWarehouse(fId) {
- return request({
- url: '/basicdata/warehouse/' + fId,
- method: 'delete'
- })
- }
- // 导出仓库
- export function exportWarehouse(query) {
- return request({
- url: '/basicdata/warehouse/export',
- method: 'get',
- params: query
- })
- }
- // 删除仓库
- export function delCusCon(fId) {
- return request({
- url: '/basicdata/area/' + fId,
- method: 'delete'
- })
- }
|