| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- import request from '@/utils/request'
- export function listRetrieval(query) {
- return request({
- url: '/warehouse-out/page',
- method: 'get',
- params: query
- })
- }
- export function executeRetrieval(query) {
- return request({
- url: '/warehouse-out/execute',
- method: 'post',
- params:query
- })
- }
- export function createRetrieval(data) {
- return request({
- url: '/warehouse-out/add',
- method: 'post',
- data
- })
- }
- export function readRetrieval(query) {
- return request({
- url: '/warehouse-out/info',
- method: 'get',
- params:query
- })
- }
- export function updateRetrieval(data) {
- return request({
- url: '/warehouse-out/edit',
- method: 'post',
- data
- })
- }
- export function deleteRetrieval(query) {
- return request({
- url: '/warehouse-out/remove',
- method: 'post',
- params:query
- })
- }
|