[Vue + Element UI] 單選框


一開始遇到的問題:

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;
		},

  

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM