From d437553851a67ad51c3eed6daba509c16762d7a9 Mon Sep 17 00:00:00 2001 From: value <z1292839451@163.com> Date: 星期六, 18 五月 2024 08:09:57 +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 bcfa0ab..d80b25e 100644 --- a/src/components/view/b2-standard.vue +++ b/src/components/view/b2-standard.vue @@ -1115,7 +1115,7 @@ this.productList.forEach(a => { if (a.state == 1) this.toggleSelection(a) }) - }, 200) + }, 300) this.tableLoad2 = false }) }, @@ -1154,13 +1154,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