From 4440ec866c6ef5f9f68f9b6c4248ab3d2c6f3bb9 Mon Sep 17 00:00:00 2001 From: liuhongfeng <291117974@qq.com> Date: Mon, 20 Nov 2023 23:32:54 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90=E6=96=B0=E5=A2=9E=E3=80=91ureport2=20?= =?UTF-8?q?=E9=9B=86=E6=88=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/report/ureport/index.ts | 39 ++++ src/views/report/ureport/UreportFileForm.vue | 113 ++++++++++ src/views/report/ureport/index.vue | 219 +++++++++++++++++++ 3 files changed, 371 insertions(+) create mode 100644 src/api/report/ureport/index.ts create mode 100644 src/views/report/ureport/UreportFileForm.vue create mode 100644 src/views/report/ureport/index.vue diff --git a/src/api/report/ureport/index.ts b/src/api/report/ureport/index.ts new file mode 100644 index 00000000..c11ce960 --- /dev/null +++ b/src/api/report/ureport/index.ts @@ -0,0 +1,39 @@ +import request from '@/config/axios' + +export interface UreportFileVO { + id: number + fileName: string + status: number + fileContent: string + remark: string +} + +// 查询Ureport2报表分页 +export const getUreportFilePage = async (params) => { + return await request.get({ url: `/report/ureport-file/page`, params }) +} + +// 查询Ureport2报表详情 +export const getUreportFile = async (id: number) => { + return await request.get({ url: `/report/ureport-file/get?id=` + id }) +} + +// 新增Ureport2报表 +export const createUreportFile = async (data: UreportFileVO) => { + return await request.post({ url: `/report/ureport-file/create`, data }) +} + +// 修改Ureport2报表 +export const updateUreportFile = async (data: UreportFileVO) => { + return await request.put({ url: `/report/ureport-file/update`, data }) +} + +// 删除Ureport2报表 +export const deleteUreportFile = async (id: number) => { + return await request.delete({ url: `/report/ureport-file/delete?id=` + id }) +} + +// 导出Ureport2报表 Excel +export const exportUreportFile = async (params) => { + return await request.download({ url: `/report/ureport-file/export-excel`, params }) +} \ No newline at end of file diff --git a/src/views/report/ureport/UreportFileForm.vue b/src/views/report/ureport/UreportFileForm.vue new file mode 100644 index 00000000..7d71055c --- /dev/null +++ b/src/views/report/ureport/UreportFileForm.vue @@ -0,0 +1,113 @@ + + \ No newline at end of file diff --git a/src/views/report/ureport/index.vue b/src/views/report/ureport/index.vue new file mode 100644 index 00000000..ef4986dc --- /dev/null +++ b/src/views/report/ureport/index.vue @@ -0,0 +1,219 @@ + + + \ No newline at end of file