From 43909f06f66a4d162ce06ac32e17955f5e446b4a Mon Sep 17 00:00:00 2001
From: hdy <1105738590@qq.com>
Date: 星期五, 02 二月 2024 11:15:14 +0800
Subject: [PATCH] 修改-配瓦规则设置、配瓦规则

---
 jcdm-ui/src/views/main/bs/orderScheduling/index.vue |   27 +++++++++++++++++++++------
 1 files changed, 21 insertions(+), 6 deletions(-)

diff --git a/jcdm-ui/src/views/main/bs/orderScheduling/index.vue b/jcdm-ui/src/views/main/bs/orderScheduling/index.vue
index a90d455..4fb42a3 100644
--- a/jcdm-ui/src/views/main/bs/orderScheduling/index.vue
+++ b/jcdm-ui/src/views/main/bs/orderScheduling/index.vue
@@ -204,26 +204,41 @@
 
           </el-table-column>
           <el-table-column label="鍚堢涓婄嚎鏃堕棿" align="center" prop="boxClosingOnlineTime" width="160">
-
+            <template slot-scope="scope">
+              <span>{{ parseTime(scope.row.boxClosingOnlineTime, '{y}-{m}-{d} {h}:{i}:{s}') }}</span>
+            </template>
           </el-table-column>
           <el-table-column label="鍚堢涓嬬嚎鏃堕棿" align="center" prop="closingBoxOfflineTime" width="160">
-
+            <template slot-scope="scope">
+              <span>{{ parseTime(scope.row.closingBoxOfflineTime, '{y}-{m}-{d} {h}:{i}:{s}') }}</span>
+            </template>
           </el-table-column>
           <el-table-column label="鎬昏涓婄嚎鏃堕棿" align="center" prop="finalAssemblyLaunchTime" width="160">
-
+            <template slot-scope="scope">
+              <span>{{ parseTime(scope.row.finalAssemblyLaunchTime, '{y}-{m}-{d} {h}:{i}:{s}') }}</span>
+            </template>
           </el-table-column>
           <el-table-column label="鎬昏涓嬬嚎鏃堕棿" align="center" prop="finalAssemblyOfflineTime" width="160">
-
+            <template slot-scope="scope">
+              <span>{{ parseTime(scope.row.finalAssemblyOfflineTime, '{y}-{m}-{d} {h}:{i}:{s}') }}</span>
+            </template>
           </el-table-column>
           <el-table-column label="CVT涓婄嚎鏃堕棿" align="center" prop="cvtLaunchTime" width="160">
-
+            <template slot-scope="scope">
+              <span>{{ parseTime(scope.row.cvtLaunchTime, '{y}-{m}-{d} {h}:{i}:{s}') }}</span>
+            </template>
           </el-table-column>
           <el-table-column label="CVT涓嬬嚎鏃堕棿" align="center" prop="cvtOfflineTime" width="160">
-
+            <template slot-scope="scope">
+              <span>{{ parseTime(scope.row.cvtOfflineTime, '{y}-{m}-{d} {h}:{i}:{s}') }}</span>
+            </template>
           </el-table-column>
           <el-table-column label="鎿嶄綔浜�" align="center" prop="operator">
           </el-table-column>
           <el-table-column label="鎿嶄綔鏃堕棿" align="center" prop="operateTime" width="160">
+            <template slot-scope="scope">
+              <span>{{ parseTime(scope.row.operateTime, '{y}-{m}-{d} {h}:{i}:{s}') }}</span>
+            </template>
           </el-table-column>
 
         </el-table>

--
Gitblit v1.9.3