From 8aeea2893e1f4b703f04e2211cf7ea2322c1931b Mon Sep 17 00:00:00 2001
From: rain <1679827795@qq.com>
Date: Sat, 12 Apr 2025 17:52:21 +0800
Subject: [PATCH] Merge branch 'master' of http://139.196.74.78:10010/r/drone/drone-web-manage
---
src/api/tickets/orderLog.js | 14 ++++++++++++--
1 files changed, 12 insertions(+), 2 deletions(-)
diff --git a/src/api/tickets/orderLog.js b/src/api/tickets/orderLog.js
index db8c13b..9ccc471 100644
--- a/src/api/tickets/orderLog.js
+++ b/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',
+ });
+};
+
--
Gitblit v1.9.3