From 2630f00f137ff75de2f84d516067b98c0fb5aefc Mon Sep 17 00:00:00 2001 From: roymondchen Date: Wed, 24 Dec 2025 15:40:17 +0800 Subject: [PATCH] =?UTF-8?q?feat(form):=20groud-list=20title=E6=94=AF?= =?UTF-8?q?=E6=8C=81html?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/form/src/containers/GroupList.vue | 4 ++-- packages/form/src/containers/GroupListItem.vue | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/form/src/containers/GroupList.vue b/packages/form/src/containers/GroupList.vue index a35454c9..8ac4aa71 100644 --- a/packages/form/src/containers/GroupList.vue +++ b/packages/form/src/containers/GroupList.vue @@ -10,11 +10,11 @@ v-for="(item, index) in model[name]" :key="index" :model="item" - :lastValues="getLastValues(lastValues[name], index)" + :lastValues="getLastValues(lastValues[name], Number(index))" :is-compare="isCompare" :config="config" :prop="prop" - :index="index" + :index="Number(index)" :label-width="labelWidth" :size="size" :disabled="disabled" diff --git a/packages/form/src/containers/GroupListItem.vue b/packages/form/src/containers/GroupListItem.vue index 294f3983..0b9897d4 100644 --- a/packages/form/src/containers/GroupListItem.vue +++ b/packages/form/src/containers/GroupListItem.vue @@ -3,7 +3,7 @@