From 813837a9555ea9929c64cc5e88ef4a56d2bd7b82 Mon Sep 17 00:00:00 2001
From: 王恒 <318726284@qq.com>
Date: 星期一, 11 八月 2025 18:43:28 +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