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 @@ + + + + +