1 表格
<!--列表-->
<el-table :data="tableData"
:header-cell-style="{background:'#eef1f6',color:'#606266'}" >
<el-table-column width="50" :row-key="row => row.unittypeDetailId">
<template slot-scope="scope">
<el-radio v-model="selectedId" :label="scope.row" @change="handleSelectionChange"> </el-radio>
</template>
</el-table-column>
<el-table-column prop="address" label="房间" align="center" width="180"></el-table-column>
<el-table-column prop="roomtitle" label="房型" align="center" width="200"></el-table-column>
</el-table>
2 处理方法
清空v-model="selectedId"的值就可以重新选择了
getList(){
// 查询成功更新数据
// 清空selectedId的值
this.selectedId = ''
}