From 01e5074e22ccc9ed73289c2fce6dc65cb4b91484 Mon Sep 17 00:00:00 2001 From: jinna Date: Fri, 24 Feb 2023 17:28:05 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E7=BB=9F=E8=AE=A1=E9=A1=B5?= =?UTF-8?q?=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/statistics/statistics.js | 26 +++ src/views/statistics/index.vue | 318 +++++++++++++++++++++++++++++++ 2 files changed, 344 insertions(+) create mode 100644 src/api/statistics/statistics.js create mode 100644 src/views/statistics/index.vue diff --git a/src/api/statistics/statistics.js b/src/api/statistics/statistics.js new file mode 100644 index 0000000..0c42697 --- /dev/null +++ b/src/api/statistics/statistics.js @@ -0,0 +1,26 @@ +import request from "@/router/axios"; + +//预约列表 +export const getList = (current, size, params) => { + return request({ + url: "/api/blade-business/apm-record/export-page", + method: "get", + params: { + ...params, + current, + size, + }, + }); +}; + +export const exportList = (params) => { + return request({ + url: "/api/blade-business/apm-record/export-excel", + method: "get", + params: { + ...params, + }, + // responseType: "arraybuffer", + responseType: "blob", + }); +}; diff --git a/src/views/statistics/index.vue b/src/views/statistics/index.vue new file mode 100644 index 0000000..61b0613 --- /dev/null +++ b/src/views/statistics/index.vue @@ -0,0 +1,318 @@ + + + + +