From 7bfa4e0bbad8d1cbff5b60605b4d46c71138a3f3 Mon Sep 17 00:00:00 2001
From: loulijun2021 <1694218219@qq.com>
Date: 星期六, 06 五月 2023 07:59:39 +0800
Subject: [PATCH] 1.看板调整2.上云路由整合

---
 src/views/kb/ckgl.vue |   46 ++++++++++++++++++++++++++++++++++++++++------
 1 files changed, 40 insertions(+), 6 deletions(-)

diff --git a/src/views/kb/ckgl.vue b/src/views/kb/ckgl.vue
index a44160d..0428ab9 100644
--- a/src/views/kb/ckgl.vue
+++ b/src/views/kb/ckgl.vue
@@ -122,8 +122,21 @@
                 >
                   <template slot-scope="{row}">
                     <!--                    <div v-if="row.totalStockInQuantity">{{ row.totalStockInQuantity }}</div>-->
-                    <div v-if="row.quantity">{{ Math.round(row.quantity*0.8) }}</div>
-                    <div v-else>0</div>
+                    <!--                    &lt;!&ndash;                    <div v-if="row.quantity">{{ Math.round(row.quantity*0.8) }}</div>&ndash;&gt;-->
+                    <!--                    <div v-else>0</div>-->
+
+                    <div v-if=" new Date(row.voucherdate.substring(0, 10)).getTime()<new Date(fun_date(-7)).getTime()">
+                      {{ row.quantity }}
+                    </div>
+                    <div
+                      v-else-if="(new Date(row.voucherdate.substring(0, 10)).getTime()<new Date(fun_date(-3)).getTime())&&
+                        (new Date(row.voucherdate.substring(0, 10)).getTime()>new Date(fun_date(-7)).getTime())"
+                    >
+                      {{ Math.ceil(row.quantity*0.6) }}
+                    </div>
+                    <div v-else>
+                      0
+                    </div>
                   </template>
                 </el-table-column>
                 <!--                  <el-table-column-->
@@ -191,7 +204,7 @@
                 <el-table-column
                   prop="customename"
                   label="瀹㈡埛"
-                  width="388"
+                  width="300"
                 >
                   <template slot-scope="{row}">
                     <div v-if="row.customename" class="ellipsis">{{ row.customename }}</div>
@@ -226,7 +239,7 @@
                 <el-table-column
                   prop="materiel_name"
                   label="浜у搧鍚嶇О"
-                  width="200"
+                  width="288"
                 >
                   <template slot-scope="{row}">
                     <div v-if="row.materiel_name" class="ellipsis">{{ row.materiel_name }}</div>
@@ -258,8 +271,20 @@
                 >
                   <template slot-scope="{row}">
                     <!--                    <div v-if="row.saleOutQuantity" class="ellipsis">{{ row.saleOutQuantity }}</div>-->
-                    <div v-if="row.quantity" class="ellipsis">{{ Math.round(row.quantity*0.8) }}</div>
-                    <div v-else>0</div>
+                    <!--                    &lt;!&ndash;                    <div v-if="row.quantity" class="ellipsis">{{ Math.round(row.quantity*0.8) }}</div>&ndash;&gt;-->
+                    <!--                    <div v-else>0</div>-->
+                    <div v-if=" new Date(row.voucherdate.substring(0, 10)).getTime()<new Date(fun_date(-7)).getTime()">
+                      {{ row.quantity }}
+                    </div>
+                    <div
+                      v-else-if="(new Date(row.voucherdate.substring(0, 10)).getTime()<new Date(fun_date(-3)).getTime())&&
+                        (new Date(row.voucherdate.substring(0, 10)).getTime()>new Date(fun_date(-7)).getTime())"
+                    >
+                      {{ Math.ceil(row.quantity*0.6) }}
+                    </div>
+                    <div v-else>
+                      0
+                    </div>
                   </template>
                 </el-table-column>
                 <!--                <el-table-column-->
@@ -377,6 +402,14 @@
   },
 
   methods: {
+    fun_date(aa) {
+      const date1 = new Date()
+      const time1 = date1.getFullYear() + '-' + (date1.getMonth() + 1) + '-' + date1.getDate()// time1琛ㄧず褰撳墠鏃堕棿
+      const date2 = new Date(date1)
+      date2.setDate(date1.getDate() + aa)
+      const time2 = date2.getFullYear() + '-' + (date2.getMonth() + 1).toString().padStart(2, '0') + '-' + date2.getDate().toString().padStart(2, '0')
+      return time2
+    },
     setStarsRef() {
       const starNodes = Array.from(this.$refs.starsRef.children)
       starNodes.forEach(item => {
@@ -514,6 +547,7 @@
         fontSize: '18px'
       }
     }
+
   }
 }
 </script>

--
Gitblit v1.9.3