- 在table 中添加事件 @row-click=“singleElection”
<el-table-column width="55">
<template slot-scope="scope">
<el-radio v-model="currentFactor" :label="scope.row.id">{{ "" }}</el-radio>
</template>
</el-table-column>
- 方法赋值
singleElection(row) {
this.currentFactorList = row; // 可以选择将行内数据保存
this.currentFactor = row.id 将id和 单选框id进行绑定
},
评论区