From cf3ec317dd436976df8a9e7a4dc77a9b5d47d8d3 Mon Sep 17 00:00:00 2001 From: SZH <szh_hello@163.com> Date: 星期四, 25 八月 2022 10:35:39 +0800 Subject: [PATCH] 修改打包环境配置 --- src/api/intellectInspectSystem/inspectRecord/index.ts | 21 +++++++++++++++++++++ 1 files changed, 21 insertions(+), 0 deletions(-) diff --git a/src/api/intellectInspectSystem/inspectRecord/index.ts b/src/api/intellectInspectSystem/inspectRecord/index.ts index d66f099..a7d17bb 100644 --- a/src/api/intellectInspectSystem/inspectRecord/index.ts +++ b/src/api/intellectInspectSystem/inspectRecord/index.ts @@ -17,6 +17,27 @@ method: 'post', data: data }); + }, + getInspectRecordByIndex: (data: object) => { + return request({ + url: import.meta.env.VITE_API_URL + `/SafeCheckTask/select/listTaskByPageAndStatusAndTime`, + method: 'post', + data: data + }); + }, + getInspectRecordSum: (data: object) => { + return request({ + url: import.meta.env.VITE_API_URL + `/SafeCheckTask/select/listTaskQuotaGbRegionGbQuotaGbPoint`, + method: 'post', + data: data + }); + }, + + getDayRecord: () => { + return request({ + url: import.meta.env.VITE_API_URL + `/SafeCheckTask/select/listTaskByNoCheckTaskAndAbnormalTask`, + method: 'get', + }); } }; } -- Gitblit v1.9.2