From 77e1201f570750033d4f743f55f9362109a7a085 Mon Sep 17 00:00:00 2001
From: 王恒 <318726284@qq.com>
Date: 星期一, 11 八月 2025 14:57:26 +0800
Subject: [PATCH] '对接新增接口'
---
src/api/system/company/company.ts | 33 ++++++++++++++++++++++++++++++++-
1 files changed, 32 insertions(+), 1 deletions(-)
diff --git a/src/api/system/company/company.ts b/src/api/system/company/company.ts
index 6370335..79d283e 100644
--- a/src/api/system/company/company.ts
+++ b/src/api/system/company/company.ts
@@ -326,4 +326,35 @@
method: 'get',
params: data
})
-}
\ No newline at end of file
+}
+// /enforce/company/log/list
+export function listCompanyLog(data) {
+ return request({
+ url: `/enforce/company/log/list`,
+ method: 'get',
+ params: data
+ })
+}
+// /enforce/company/log/upd
+export function updCompanyLog(data) {
+ return request({
+ url: `/enforce/company/log/upd`,
+ method: 'post',
+ data: data
+ })
+}
+// /enforce/company/log/{ids}
+export function delCompanyLog(data) {
+ return request({
+ url: `/enforce/company/log/${data.delId}`,
+ method: 'DELETE',
+ })
+}
+
+// // downloadQrcode
+// export function downloadQrcode(data) {
+// return request({
+// url: '/system/company/downloadQrcode',
+// method: 'get'
+// })
+// }
\ No newline at end of file
--
Gitblit v1.9.1