|
|
|
@ -22,6 +22,17 @@ export const getPage = (current, size, params) => {
|
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
export const getstatistics = (current, size, params) => { |
|
|
|
|
return request({ |
|
|
|
|
url: '/api/logpm-distribution/deliveryList/statistics', |
|
|
|
|
method: 'get', |
|
|
|
|
params: { |
|
|
|
|
...params, |
|
|
|
|
current, |
|
|
|
|
size, |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
export const getDetail = (id) => { |
|
|
|
|
return request({ |
|
|
|
@ -33,6 +44,16 @@ export const getDetail = (id) => {
|
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
export const getWrapdetail = (id) => { |
|
|
|
|
return request({ |
|
|
|
|
url: '/api/logpm-distribution/deliveryList/wrapdetail', |
|
|
|
|
method: 'get', |
|
|
|
|
params: { |
|
|
|
|
id |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
export const remove = (ids) => { |
|
|
|
|
return request({ |
|
|
|
|
url: '/api/logpm-distribution/deliveryList/remove', |
|
|
|
|