From 19f73f3d2370c821355d0cc0fa5b0f7cdcb898e8 Mon Sep 17 00:00:00 2001
From: huangxiaoqiang <huangxiaoqiang@hnkhzn.com>
Date: 星期一, 23 六月 2025 08:48:32 +0800
Subject: [PATCH] 增强任务处理和更新版本信息在 `TaskController.cs` 中添加了对 `WIDESEAWCS_ITaskInfoRepository` 和 `WIDESEAWCS_ITaskInfoService` 的引用,以提升任务信息处理能力。在 `CommonConveyorLineJob.cs` 中引入 `platformNotusable` 列表,确保查询平台信息时的可用性检查。在 `RequestInbound.cs` 中添加对 并优化 `outJZTask` 的查询条件。修改 `CommonStackerCraneJob.cs` 中静置出库任务的判断逻辑,确保任务执行前的适当检查。

---
 CodeManagement/BigScreenVue/src/views/indexs/left-bottom.vue |   12 +++++++-----
 1 files changed, 7 insertions(+), 5 deletions(-)

diff --git a/CodeManagement/BigScreenVue/src/views/indexs/left-bottom.vue b/CodeManagement/BigScreenVue/src/views/indexs/left-bottom.vue
index 4d9f6e9..012dc73 100644
--- a/CodeManagement/BigScreenVue/src/views/indexs/left-bottom.vue
+++ b/CodeManagement/BigScreenVue/src/views/indexs/left-bottom.vue
@@ -306,9 +306,12 @@
     },
     async getData() {
         var rep1=await Getproductionvolume()
-        var rep=rep1.filter(it=>it.roadway.includes("JZ"))
+        console.log(rep1)
+        var rep=rep1.filter(it=>it.roadway.includes("CW"))
+  
+       
         // (1) 鎸夋棩鏈熷垎缁勬牳蹇冪畻娉�
-const groupedData = rep.reduce((acc, item) => {
+ const groupedData = rep.reduce((acc, item) => {
   // 鎻愬彇鏃ユ湡閮ㄥ垎锛堟牸寮忥細YYYY-MM-DD锛�
   const dateKey = item.createDate.split(' ')[0]; // 鎴� item.createDate.substring(0,10)
   
@@ -327,8 +330,7 @@
 
 // (2) 杞崲涓烘帓搴忓悗鐨勬暟缁�
 const sortedGroups = Object.values(groupedData)
-  .sort((a, b) => new Date(b.date) - new Date(a.date)); // 闄嶅簭鎺掑垪
-
+  .sort((a, b) => new Date(b.date) - new Date(a.date)); // 闄嶅簭鎺掑垪// 闄嶅簭鎺掑垪
 
       this.options = {
      backgroundColor: '#0a1256',
@@ -526,7 +528,7 @@
              symbol: "none",
              label: {
                  normal: {
-                     show: false,
+                     show: true,
                  }
              },
              lineStyle: {

--
Gitblit v1.9.3