From 5dca76e3d754ef878ce4e9cf0d4f4f84d4421c27 Mon Sep 17 00:00:00 2001 From: zhangdi <15053473693@163.com> Date: Wed, 7 Jan 2026 11:38:04 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=80=E7=BA=A7=E5=87=BA=E5=BA=93=E7=AE=A1?= =?UTF-8?q?=E7=90=86=E8=B4=A6=E7=9B=AE=E6=98=8E=E7=BB=86=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/firstOrder/inbound.js | 10 +- src/views/dataAnalysis/index.vue | 890 ++++++++++++++++++ .../components/batchSelectionDialog.vue | 8 +- src/views/firstOrder/components/inDialog.vue | 685 ++++++++++---- src/views/firstOrder/components/outDialog.vue | 810 +++++++++++----- 5 files changed, 1960 insertions(+), 443 deletions(-) create mode 100644 src/views/dataAnalysis/index.vue diff --git a/src/api/firstOrder/inbound.js b/src/api/firstOrder/inbound.js index ccb04c9..59b3720 100644 --- a/src/api/firstOrder/inbound.js +++ b/src/api/firstOrder/inbound.js @@ -79,4 +79,12 @@ export const editList = (onePutStorageId) => { cryptoToken: false, cryptoData: false }) -} \ No newline at end of file +} + +export const getStatistics = data => { + return request({ + url: '/smartpark/oneForm/getOnePutOneForm', + method: 'post', + data: data, + }) +} diff --git a/src/views/dataAnalysis/index.vue b/src/views/dataAnalysis/index.vue new file mode 100644 index 0000000..2d2dad5 --- /dev/null +++ b/src/views/dataAnalysis/index.vue @@ -0,0 +1,890 @@ + + + diff --git a/src/views/firstOrder/components/batchSelectionDialog.vue b/src/views/firstOrder/components/batchSelectionDialog.vue index 50b233b..f04bb33 100644 --- a/src/views/firstOrder/components/batchSelectionDialog.vue +++ b/src/views/firstOrder/components/batchSelectionDialog.vue @@ -26,8 +26,8 @@ - - + + @@ -103,7 +103,7 @@ export default { parentDepartmentName: parentRow.departmentName, // 关联父行的部门信息 applicationQuantity: parentRow.applicationQuantity, ldDemandEndId: parentRow.ldDemandEndId, - // outboundQuantity:parentRow.outboundQuantity, + outboundQuantity:parentRow.outboundQuantity, })); // 先移除当前父行下已勾选的旧数据 @@ -146,4 +146,4 @@ export default { } - \ No newline at end of file + diff --git a/src/views/firstOrder/components/inDialog.vue b/src/views/firstOrder/components/inDialog.vue index e7a1d53..f5404d0 100644 --- a/src/views/firstOrder/components/inDialog.vue +++ b/src/views/firstOrder/components/inDialog.vue @@ -1,33 +1,64 @@