From 38af7850e2c62b28ccb6f990140ac17c4bc21419 Mon Sep 17 00:00:00 2001 From: zhouwenxuan <1175765986@qq.com> Date: 星期一, 18 三月 2024 14:49:27 +0800 Subject: [PATCH] 风险辨识管理 --- src/api/intellectInspectSystem/inspectTask/index.ts | 14 ++++++++++++++ 1 files changed, 14 insertions(+), 0 deletions(-) diff --git a/src/api/intellectInspectSystem/inspectTask/index.ts b/src/api/intellectInspectSystem/inspectTask/index.ts index 2c36d91..b4b64c6 100644 --- a/src/api/intellectInspectSystem/inspectTask/index.ts +++ b/src/api/intellectInspectSystem/inspectTask/index.ts @@ -71,6 +71,20 @@ url: import.meta.env.VITE_API_URL + `/safeCheckQuotaType/select/listQuotaType`, method: 'get' }); + }, + getAllQuotaList: (data: object) => { + return request({ + url: import.meta.env.VITE_API_URL + `/safeCheckQuota/select/listQuotas`, + method: 'post', + data: data + }); + }, + openOrCloseInspectTask: (data: object) => { + return request({ + url: import.meta.env.VITE_API_URL + `/SafeCheckTaskUnit/update/updateTaskUnitStatusById`, + method: 'post', + data: data + }); } }; } -- Gitblit v1.9.2