From f053c85b3becf80bbd0860cc5fb9b2387caac486 Mon Sep 17 00:00:00 2001 From: 13233904609 <13233904609@163.cm> Date: Tue, 19 Dec 2023 09:13:36 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BB=9F=E8=AE=A1=E5=88=86=E6=9E=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ruoyi-ui/src/api/ehs/IndexStatistics.js | 30 +++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 ruoyi-ui/src/api/ehs/IndexStatistics.js diff --git a/ruoyi-ui/src/api/ehs/IndexStatistics.js b/ruoyi-ui/src/api/ehs/IndexStatistics.js new file mode 100644 index 0000000..d8ea200 --- /dev/null +++ b/ruoyi-ui/src/api/ehs/IndexStatistics.js @@ -0,0 +1,30 @@ +import request from "@/utils/request"; +// 查询首页上方文字数据 +export function getEhsIndexStatistics() { + return request({ + url: "/ehs/indexStatistics/getEhsIndexStatistics", + method: "get", + }); +} +// 查询首页上方文字数据--汇总数据 +export function getSuperviseAndHandle() { + return request({ + url: "/ehs/indexStatistics/getSuperviseAndHandle", + method: "get", + }); +} +// 查询首页上方文字数据----列表数据 +export function getEhsIndexStatisticsList() { + return request({ + url: "/ehs/indexStatistics/getEhsIndexStatisticsList", + method: "get", + }); +} +// 查询首页上方文字数据点击详情 +export function detailslist(query) { + return request({ + url: "/ehs/indexStatistics/detailslist", + method: "get", + params: query, + }); +}