fix: 修复某些组件页面重复进入无法正常预览的问题

- 修复单选、打分、NPS无法正常预览的问题
This commit is contained in:
Huangzhe
2025-03-21 16:45:36 +08:00
parent 18375e5b31
commit 9d1dd8a1f8
6 changed files with 6 additions and 17 deletions

View File

@@ -20,7 +20,7 @@
</contenteditable>
</template>
<template #input>
<template v-for="item /*optionIndex*/ in element.options" :key="item.id">
<template v-for="item /*optionIndex*/ in element.list ?? element.options" :key="item.id">
<van-radio-group v-if="element.question_type === 1" v-model="choiceValue">
<option-action
:data="isPreview ? item.options : item"