From 499bad7f5ec5f1aec7afbfc24a672e5b01329548 Mon Sep 17 00:00:00 2001 From: "han\\hanst" Date: Wed, 22 Apr 2026 15:49:13 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B1=82=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../production-plan-cable-cop-task.vue | 8 ++++---- .../longchuang/production-plan-home-order.vue | 11 +++++++---- .../production-plan-renovation-order.vue | 8 ++++---- .../longchuang/production-work-report.vue | 16 +++------------- 4 files changed, 18 insertions(+), 25 deletions(-) diff --git a/src/views/modules/longchuang/production-plan-cable-cop-task.vue b/src/views/modules/longchuang/production-plan-cable-cop-task.vue index 44ba1168..2bfd1a2b 100644 --- a/src/views/modules/longchuang/production-plan-cable-cop-task.vue +++ b/src/views/modules/longchuang/production-plan-cable-cop-task.vue @@ -63,10 +63,10 @@ diff --git a/src/views/modules/longchuang/production-plan-home-order.vue b/src/views/modules/longchuang/production-plan-home-order.vue index 27e55a04..b7aa411c 100644 --- a/src/views/modules/longchuang/production-plan-home-order.vue +++ b/src/views/modules/longchuang/production-plan-home-order.vue @@ -10,6 +10,9 @@ + + + @@ -64,10 +67,10 @@ diff --git a/src/views/modules/longchuang/production-plan-renovation-order.vue b/src/views/modules/longchuang/production-plan-renovation-order.vue index c064bebf..1b21b1ff 100644 --- a/src/views/modules/longchuang/production-plan-renovation-order.vue +++ b/src/views/modules/longchuang/production-plan-renovation-order.vue @@ -55,10 +55,10 @@ diff --git a/src/views/modules/longchuang/production-work-report.vue b/src/views/modules/longchuang/production-work-report.vue index 8d18e700..00eb0bf3 100644 --- a/src/views/modules/longchuang/production-work-report.vue +++ b/src/views/modules/longchuang/production-work-report.vue @@ -23,13 +23,6 @@
待报工节点
-
-
-
-
{{ completedNodeCount }}
-
已报工节点
-
-
@@ -58,7 +51,6 @@ -
@@ -132,7 +124,7 @@
节点报工
-
+
{{ node.nodeName }}
@@ -293,9 +285,6 @@ export default { }, pendingNodeCount() { return this.dataList.reduce((sum, item) => sum + (item.visibleNodeList || []).filter(node => node.status !== '已完成').length, 0) - }, - completedNodeCount() { - return this.dataList.reduce((sum, item) => sum + (item.visibleNodeList || []).filter(node => node.status === '已完成').length, 0) } }, activated() { @@ -343,7 +332,8 @@ export default { nodeDoneCount: nodeDoneCount, nodeTotalCount: nodeTotalCount, currentNode: currentNode, - visibleNodeList: nodeList + visibleNodeList: nodeList, + visiblePendingNodeList: nodeList.filter(item => item.status !== '已完成') } }, getOrderTypeName(orderType) {