<el-table-column label="答案" align="center" min-width="100%">
					<template slot-scope="scope">
						<div v-for="(item, index) in tableData[scope.$index].answerList" :key="index">
							答案{{index+1}}:&nbsp;&nbsp;&nbsp;{{scope.row.answerList[index].answer_content}}&nbsp;(分值:{{scope.row.answerList[index].answer_score}})
						</div>

					</template>
				</el-table-column>

v-for="(item, index) in tableData[scope.$index].answerList

使用v-for遍历,scope.$index获取当前行的下标,scope.row获取当前行的对象

Logo

前往低代码交流专区

更多推荐