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.
19 lines
442 B
19 lines
442 B
import request from '@/axios'; |
|
/** 报表列表 */ |
|
export const postCheckWaybillTimePage = data => { |
|
return request({ |
|
url: '/api/logpm-report/reportTime/packageStartTimePage', |
|
method: 'post', |
|
data, |
|
}); |
|
}; |
|
|
|
/** 报表导出 */ |
|
export const postCheckWaybillTimeExport = data => { |
|
return request({ |
|
url: '/api/logpm-report/reportTime/packageStartTimeExport', |
|
method: 'post', |
|
data, |
|
responseType: 'blob', |
|
}); |
|
};
|
|
|