From 4a800a8fc83c6bd1f86a8e847b079a51a7532c09 Mon Sep 17 00:00:00 2001
From: zhangzengfei <zhangzengfei@smartai.com>
Date: 星期三, 20 七月 2022 15:05:58 +0800
Subject: [PATCH] 修复国标配置的bug

---
 src/api/log.ts |   35 ++++++++++++++++++++++++-----------
 1 files changed, 24 insertions(+), 11 deletions(-)

diff --git a/src/api/log.ts b/src/api/log.ts
index 769b924..8627e3f 100644
--- a/src/api/log.ts
+++ b/src/api/log.ts
@@ -1,4 +1,4 @@
-import request from "@/scripts/httpRequest";
+import request from "@/scripts/httpRequest"
 
 // /data/api-v//
 
@@ -7,34 +7,47 @@
     url: "/data/api-v/log/queryOperationLog",
     method: "post",
     data
-  });
-};
+  })
+}
 
 export const getOperations = (query: any) => {
   return request({
     url: "/data/api-v/log/operations",
     method: "get",
     params: query
-  });
-};
+  })
+}
 export const getModules = (query: any) => {
   return request({
     url: "/data/api-v/log/modules",
     method: "get",
     params: query
-  });
-};
+  })
+}
 export const queryScheduleLog = (data: any) => {
   return request({
     url: "/data/api-v/log/queryScheduleLog",
     method: "post",
     data
-  });
-};
+  })
+}
 export const queryDataPushLog = (data: any) => {
   return request({
     url: "/data/api-v/log/ruleServerLog",
     method: "post",
     data
-  });
-};
+  })
+}
+export const queryVaSystemLog = (data: any) => {
+  return request({
+    url: "/data/api-v/log/vaSystemLog",
+    method: "post",
+    data
+  })
+}
+export const queryProcName = () => {
+  return request({
+    url: "/data/api-v/log/procNames",
+    method: "get"
+  })
+}

--
Gitblit v1.8.0