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.
 
 
 
 

20 lines
456 B

import request from '@/axios';
/** 报表列表 */
export const postCheckWaybillTimePage = data => {
return request({
url: '/api/logpm-report/reportTime/zeroStartTimePage',
method: 'post',
data,
timeout: 30000,
});
};
/** 报表导出 */
export const postCheckWaybillTimeExport = data => {
return request({
url: '/api/logpm-report/reportTime/zeroStartTimeExport',
method: 'post',
data,
responseType: 'blob',
});
};