From cd95b584fe7da1ea63476871eabf512213a31e69 Mon Sep 17 00:00:00 2001 From: 王恒 <318726284@qq.com> Date: 星期五, 18 七月 2025 17:42:03 +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