From d2de075da3978502d4dcbbace7b998d4c3a8192f Mon Sep 17 00:00:00 2001 From: licp <lichunping@guanfang.com.cn> Date: 星期一, 20 五月 2024 14:33:45 +0800 Subject: [PATCH] Merge branch 'master' of http://114.132.189.42:9002/r/center-lims-before into master --- 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