el-table 实现单选


 <el-table v-loading="loading" highlight-current-row :data="tableData" border style="width: 100%" @current-change="handleSelectChange">
            <el-table-column label="选择" width="55" align="center" fixed="left">
              <template slot-scope="scope">
                <el-radio v-model="tableradio" :label="scope.row"><i /></el-radio>
              </template>
            </el-table-column>
           </el-table>
  handleSelectChange(currentRow) {
      this.tableradio = currentRow
      this.selectId = currentRow.eid
      console.log(currentRow)
    },

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM