一開始遇到的問題:
1. 單選按鈕點某一個,它自己沒被選中,它的上一個被選中了
2. 單選按鈕的前面有數字,需要去掉
<!--單選框--> <el-table-column width="50px" align="center"> <template slot-scope="scope"> <el-radio :label="scope.$index" v-model="jobTableRadio" @change.native="getJobTableRow(scope.$index,scope.row)" style="margin-left: 10px;"> </el-radio> </template> </el-table-column>
methods里面添加:
getJobTableRow(index,row){ this.selectedJobTableRow = row; },