From 3eea723d03c46cbed4fe47b538f3b725e79284a6 Mon Sep 17 00:00:00 2001 From: wjt <1797368093@qq.com> Date: 星期二, 23 七月 2024 09:54:58 +0800 Subject: [PATCH] 添加异常菜单 --- src/api/system/company/company.ts | 23 +++++++++++++++++++++++ 1 files changed, 23 insertions(+), 0 deletions(-) diff --git a/src/api/system/company/company.ts b/src/api/system/company/company.ts index 6370335..b5f4244 100644 --- a/src/api/system/company/company.ts +++ b/src/api/system/company/company.ts @@ -326,4 +326,27 @@ method: 'get', params: data }) +} +// /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', + }) } \ No newline at end of file -- Gitblit v1.9.1