src/api/tickets/orderLog.js
@@ -1,8 +1,8 @@ import request from '@/axios'; export const getList = (data) => { export const getList = (data,current,size) => { return request({ url: '/drone-device-core/wayline/orderLog/pageList', url: '/drone-device-core/wayline/orderLog/pageList?current='+current+"&size="+size, method: 'post', data, }); @@ -50,3 +50,13 @@ }); }; // 导出 export const orderLogExport = (data) => { return request({ url: '/drone-device-core/wayline/orderLog/export', method: 'post', data, responseType: 'blob', }); };