Browse Source

1.补充接口

dev-warehouse
0.0 2 years ago
parent
commit
4483fc1ba5
  1. 21
      src/api/distribution/distributionDeliveryList.js

21
src/api/distribution/distributionDeliveryList.js

@ -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',

Loading…
Cancel
Save