deliveryRecord.js 226 B

12345678910
  1. import axios from '@/libs/axios.js';
  2. // 列表
  3. export const getDeliveryLogList = params => {
  4. return axios.request({
  5. url: `deliveryLog/query/${params.pageNo}/${params.pageSize}`,
  6. method: 'post',
  7. data: params
  8. })
  9. };