From 0f2acb4f868056eb7257ff8c6daee8a56849f95a Mon Sep 17 00:00:00 2001
From: 小小儁爺 <1694218219@qq.com>
Date: 星期三, 22 四月 2026 17:24:20 +0800
Subject: [PATCH] 1.入库标识卡功能开发

---
 src/views/kanbanManager/zpcj.vue |   69 ++++++++++++++++++++++++----------
 1 files changed, 49 insertions(+), 20 deletions(-)

diff --git a/src/views/kanbanManager/zpcj.vue b/src/views/kanbanManager/zpcj.vue
index 7d18b1b..9bd72b5 100644
--- a/src/views/kanbanManager/zpcj.vue
+++ b/src/views/kanbanManager/zpcj.vue
@@ -128,20 +128,32 @@
             </div>
             <div class="lineContent horn" style="height: 380px;display: flex;justify-content: space-between">
               <div style="display: flex;justify-content: center;position: relative">
+
                 <div class="kb_center_block_children all_block05">
-                  <div style="font-size: 24px;">{{ parseFloat(RightBottom.Y) }}</div>
+                  <div style="font-size: 24px;">{{ parseFloat(RightBottom[0].BaseQuantity) }}</div>
                   <div class="box02" />
-                  <div>鍘熸潗鏂�</div>
+                  <div>{{ RightBottom[0].classname }}</div>
                 </div>
-                <!--                <div class="kb_center_block_children all_block06">-->
-                <!--                  <div style="font-size: 24px;">{{ parseFloat(RightBottom.B) }}</div>-->
-                <!--                  <div class="box02" />-->
-                <!--                  <div>鍗婃垚鍝�</div>-->
-                <!--                </div>-->
-                <div class="kb_center_block_children all_block07">
-                  <div style="font-size: 24px;">{{ parseFloat(RightBottom.C) }}</div>
+                <div class="kb_center_block_children all_block06">
+                  <div style="font-size: 24px;">{{ parseFloat(RightBottom[1].BaseQuantity) }}</div>
                   <div class="box02" />
-                  <div>浜ф垚鍝�</div>
+                  <div>{{ RightBottom[1].classname }}</div>
+                </div>
+
+                <div class="kb_center_block_children all_block07">
+                  <div style="font-size: 24px;">{{ parseFloat(RightBottom[2].BaseQuantity) }}</div>
+                  <div class="box02" />
+                  <div>{{ RightBottom[2].classname }}</div>
+                </div>
+                <div class="kb_center_block_children all_block08">
+                  <div style="font-size: 24px;">{{ parseFloat(RightBottom[3].BaseQuantity) }}</div>
+                  <div class="box02" />
+                  <div>{{ RightBottom[3].classname }}</div>
+                </div>
+                <div class="kb_center_block_children all_block09">
+                  <div style="font-size: 24px;">{{ parseFloat(RightBottom[4].BaseQuantity) }}</div>
+                  <div class="box02" />
+                  <div>{{ RightBottom[4].classname }}</div>
                 </div>
 
               </div>
@@ -176,7 +188,13 @@
       LeftBottomData01: [],
       LeftBottomData02: [],
 
-      RightBottom: {}
+      RightBottom: [
+        { BaseQuantity: '', classname: '' },
+        { BaseQuantity: '', classname: '' },
+        { BaseQuantity: '', classname: '' },
+        { BaseQuantity: '', classname: '' },
+        { BaseQuantity: '', classname: '' }
+      ]
 
     }
   },
@@ -420,7 +438,7 @@
 }
 
 .kb_center_block_children {
-  height: 180px;
+  height: 160px;
   //border: 1px solid $kbBorderColor;
   width: 240px;
   display: flex;
@@ -433,7 +451,7 @@
 
   .box02 {
     background: url("../../assets/images/box02.png") no-repeat;
-    transform: scale(1.5);
+    transform: scale(1);
     width: 145px;
     height: 84px;
 
@@ -443,19 +461,30 @@
 .all_block05 {
   position: absolute;
   animation: upDown 3s ease-in-out infinite;
-  left: 170px;
+  left: 0;
 }
 
-//.all_block06 {
-//  position: absolute;
-//  animation: upDown2 3s ease-in-out infinite;
-//  left: 320px;
-//}
+.all_block06 {
+  position: absolute;
+  animation: upDown2 3s ease-in-out infinite;
+  left: 160px;
+}
 
 .all_block07 {
   position: absolute;
+  animation: upDown 3s ease-in-out infinite;
+  left: 320px;
+}
+
+.all_block08 {
+  position: absolute;
   animation: upDown2 3s ease-in-out infinite;
-  left: 470px;
+  left: 480px;
+}
+.all_block09 {
+  position: absolute;
+  animation: upDown 3s ease-in-out infinite;
+  left: 640px;
 }
 
 @keyframes upDown {

--
Gitblit v1.9.3