You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.1 KiB
59 lines
1.1 KiB
import request from '@/axios'; |
|
|
|
export const getList = (current, size, params) => { |
|
return request({ |
|
url: '/api/logpm-warehouse/warehouseStock/page', |
|
method: 'get', |
|
params: { |
|
...params, |
|
current, |
|
size, |
|
}, |
|
}); |
|
}; |
|
|
|
export const getDetail = id => { |
|
return request({ |
|
url: '/api/logpm-warehouse/warehouseStock/detail', |
|
method: 'get', |
|
params: { |
|
id, |
|
}, |
|
}); |
|
}; |
|
|
|
export const remove = ids => { |
|
return request({ |
|
url: '/api/logpm-warehouse/warehouseStock/remove', |
|
method: 'post', |
|
params: { |
|
ids, |
|
}, |
|
}); |
|
}; |
|
|
|
export const add = row => { |
|
return request({ |
|
url: '/api/logpm-warehouse/warehouseStock/submit', |
|
method: 'post', |
|
data: row, |
|
}); |
|
}; |
|
|
|
export const update = row => { |
|
return request({ |
|
url: '/api/logpm-warehouse/warehouseStock/submit', |
|
method: 'post', |
|
data: row, |
|
}); |
|
}; |
|
|
|
//导出 |
|
export const $_warehouseStock = params => { |
|
return request({ |
|
url: '/api/logpm-warehouse/warehouseStock/export-WarehouseStock', |
|
method: 'get', |
|
params, |
|
responseType: 'blob', |
|
}); |
|
};
|
|
|