From 537e80a165d719033a2965dcd9327c419d793c4c Mon Sep 17 00:00:00 2001 From: aixianling Date: Fri, 17 Jun 2022 13:40:09 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E4=BC=81=E5=BE=AE=E5=9C=B0?= =?UTF-8?q?=E5=8C=BA=E9=80=89=E6=8B=A9=E7=BB=84=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/pages/multiplyArea.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/pages/multiplyArea.vue b/src/components/pages/multiplyArea.vue index e7bf20e3..4db9c0f4 100644 --- a/src/components/pages/multiplyArea.vue +++ b/src/components/pages/multiplyArea.vue @@ -86,7 +86,7 @@ export default { }).then(res => { if (res?.data) { this.selectList.push(row) - this.options = res.data.map(id => ({id, name: id, isChecked: !!this.selected[id]})) + this.options = res.data.map(e => ({...e, isChecked: !!this.selected[e.id]})) } }).finally(() => row.locked = false) }