From 20ef25be80249e3e8d6c81aa6300b4996ce9a56e Mon Sep 17 00:00:00 2001
From: licp <lichunping@guanfang.com.cn>
Date: 星期二, 21 五月 2024 11:35:19 +0800
Subject: [PATCH] 修改检验下单样式

---
 src/components/view/b2-standard.vue |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/components/view/b2-standard.vue b/src/components/view/b2-standard.vue
index 10ec394..8249df7 100644
--- a/src/components/view/b2-standard.vue
+++ b/src/components/view/b2-standard.vue
@@ -1144,7 +1144,7 @@
             this.productList.forEach(a => {
               if (a.state == 1) this.toggleSelection(a)
             })
-          }, 200)
+          }, 300)
           this.tableLoad2 = false
         })
       },
@@ -1183,13 +1183,13 @@
       },
       handleAll(e) {
         if (e.length > 0) {
-          this.productList = this.productList.map(m => {
+          this.productList.map(m => {
             m.state = 0
             this.upProductSelect(null, m)
             return m
           })
         } else {
-          this.productList = this.productList.map(m => {
+          this.productList.map(m => {
             m.state = 1
             this.upProductSelect(null, m)
             return m

--
Gitblit v1.9.3