From 371ef0252a66678f0257d152e54539f867e9262c Mon Sep 17 00:00:00 2001 From: fengyuan_yang <1976974459@qq.com> Date: Fri, 9 Jan 2026 16:46:29 +0800 Subject: [PATCH] =?UTF-8?q?2026-01-09=20=E6=96=B0=E5=A2=9E=E6=94=B6?= =?UTF-8?q?=E8=B4=A7=E5=85=A5=E5=BA=93=E4=BB=BB=E5=8A=A1=E3=80=81=E6=8B=A3?= =?UTF-8?q?=E8=B4=A7=E5=87=BA=E5=BA=93=E4=BB=BB=E5=8A=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/report/inboundNotificationReport.js | 14 + src/api/report/outboundNotificationReport.js | 14 + .../report/inboundNotificationReport.vue | 670 +++++++++++++++++ .../report/outboundNotificationReport.vue | 685 ++++++++++++++++++ 4 files changed, 1383 insertions(+) create mode 100644 src/api/report/inboundNotificationReport.js create mode 100644 src/api/report/outboundNotificationReport.js create mode 100644 src/views/modules/report/inboundNotificationReport.vue create mode 100644 src/views/modules/report/outboundNotificationReport.vue diff --git a/src/api/report/inboundNotificationReport.js b/src/api/report/inboundNotificationReport.js new file mode 100644 index 0000000..dd64a33 --- /dev/null +++ b/src/api/report/inboundNotificationReport.js @@ -0,0 +1,14 @@ +import { createAPI } from "@/utils/httpRequest.js"; + +// -------------收货入库任务报表-------------- + +/** + * 查询收货入库任务报表数据(分页) + * @param {Object} data 查询条件 + */ +export const searchInboundNotificationReport = data => createAPI(`/report/inboundNotificationReport/list`, 'post', data); + +/** + * 获取用户可访问的site列表 + */ +export const getSiteList = () => createAPI(`/report/inboundNotificationReport/getSiteList`, 'get'); diff --git a/src/api/report/outboundNotificationReport.js b/src/api/report/outboundNotificationReport.js new file mode 100644 index 0000000..29997b6 --- /dev/null +++ b/src/api/report/outboundNotificationReport.js @@ -0,0 +1,14 @@ +import { createAPI } from "@/utils/httpRequest.js"; + +// -------------拣货出库任务报表-------------- + +/** + * 查询拣货出库任务报表数据(分页) + * @param {Object} data 查询条件 + */ +export const searchOutboundNotificationReport = data => createAPI(`/report/outboundNotificationReport/list`, 'post', data); + +/** + * 获取用户可访问的site列表 + */ +export const getSiteList = () => createAPI(`/report/outboundNotificationReport/getSiteList`, 'get'); diff --git a/src/views/modules/report/inboundNotificationReport.vue b/src/views/modules/report/inboundNotificationReport.vue new file mode 100644 index 0000000..2540074 --- /dev/null +++ b/src/views/modules/report/inboundNotificationReport.vue @@ -0,0 +1,670 @@ + + + + + diff --git a/src/views/modules/report/outboundNotificationReport.vue b/src/views/modules/report/outboundNotificationReport.vue new file mode 100644 index 0000000..88f06d5 --- /dev/null +++ b/src/views/modules/report/outboundNotificationReport.vue @@ -0,0 +1,685 @@ + + + + +