| 
				
			 | 
			
			
				@@ -4,8 +4,8 @@ 
			 | 
		
	
		
			
			| 
				4
			 | 
			
				4
			 | 
			
			
				      <div class="block"> 
			 | 
		
	
		
			
			| 
				5
			 | 
			
				5
			 | 
			
			
				       <el-row :gutter="20"> 
			 | 
		
	
		
			
			| 
				6
			 | 
			
				6
			 | 
			
			
				         <el-col :span="6"> 
			 | 
		
	
		
			
			| 
				7
			 | 
			
				
			 | 
			
			
				-          <span class="demonstration">輪數選擇</span> 
			 | 
		
	
		
			
			| 
				8
			 | 
			
				
			 | 
			
			
				-          <el-select @change='handleFilter' style="width: 120px" class="filter-item" v-model="listQuery.round" placeholder="輪"> 
			 | 
		
	
		
			
			| 
				
			 | 
			
				7
			 | 
			
			
				+          <span class="demonstration">關數選擇</span> 
			 | 
		
	
		
			
			| 
				
			 | 
			
				8
			 | 
			
			
				+          <el-select @change='handleFilter' style="width: 120px" class="filter-item" v-model="listQuery.round" placeholder="關"> 
			 | 
		
	
		
			
			| 
				9
			 | 
			
				9
			 | 
			
			
				           <el-option v-for="item in roundOptions" :key="item.label" :label="item.label" :value="item.key"> 
			 | 
		
	
		
			
			| 
				10
			 | 
			
				10
			 | 
			
			
				           </el-option> 
			 | 
		
	
		
			
			| 
				11
			 | 
			
				11
			 | 
			
			
				         </el-select> 
			 | 
		
	
	
		
			
			| 
				
			 | 
			
			
				@@ -78,7 +78,7 @@ 
			 | 
		
	
		
			
			| 
				78
			 | 
			
				78
			 | 
			
			
				     </el-table> 
			 | 
		
	
		
			
			| 
				79
			 | 
			
				79
			 | 
			
			
				     <el-table :data="detail" :span-method="objectSpanMethod"  v-loading.body="listLoading" element-loading-text="Loading" border fit highlight-current-row 
			 | 
		
	
		
			
			| 
				80
			 | 
			
				80
			 | 
			
			
				       style="width: 100%"> 
			 | 
		
	
		
			
			| 
				81
			 | 
			
				
			 | 
			
			
				-      <el-table-column label="此輪結果" align="center"> 
			 | 
		
	
		
			
			| 
				
			 | 
			
				81
			 | 
			
			
				+      <el-table-column label="此關結果" align="center"> 
			 | 
		
	
		
			
			| 
				82
			 | 
			
				82
			 | 
			
			
				         <el-table-column prop="MemberRecord.GambleMember.name" label="玩家"> 
			 | 
		
	
		
			
			| 
				83
			 | 
			
				83
			 | 
			
			
				         </el-table-column> 
			 | 
		
	
		
			
			| 
				84
			 | 
			
				84
			 | 
			
			
				         <!-- <el-table-column prop="MemberRecord.GambleMember.name" label="門主"> 
			 | 
		
	
	
		
			
			| 
				
			 | 
			
			
				@@ -170,7 +170,7 @@ export default { 
			 | 
		
	
		
			
			| 
				170
			 | 
			
				170
			 | 
			
			
				   created() { 
			 | 
		
	
		
			
			| 
				171
			 | 
			
				171
			 | 
			
			
				     fetchRoundCount(this.bucket).then((response) => { 
			 | 
		
	
		
			
			| 
				172
			 | 
			
				172
			 | 
			
			
				       for (let i = 1; i <= response.data; i++) { 
			 | 
		
	
		
			
			| 
				173
			 | 
			
				
			 | 
			
			
				-        this.roundOptions.push({ label: `第 ${i} 輪`, key: i }) 
			 | 
		
	
		
			
			| 
				
			 | 
			
				173
			 | 
			
			
				+        this.roundOptions.push({ label: `第 ${i} 關`, key: i }) 
			 | 
		
	
		
			
			| 
				174
			 | 
			
				174
			 | 
			
			
				       } 
			 | 
		
	
		
			
			| 
				175
			 | 
			
				175
			 | 
			
			
				     }) 
			 | 
		
	
		
			
			| 
				176
			 | 
			
				176
			 | 
			
			
				     this.SetVisible(false) 
			 |