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 @@