mirror of
				https://github.com/TeaOSLab/EdgeAdmin.git
				synced 2025-11-04 05:00:25 +08:00 
			
		
		
		
	
		
			
	
	
		
			22 lines
		
	
	
		
			735 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
		
		
			
		
	
	
			22 lines
		
	
	
		
			735 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| 
								 | 
							
								{$layout "layout_popup"}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								<h3>选择分组</h3>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								<form class="ui form" data-tea-action="$" data-tea-success="success">
							 | 
						||
| 
								 | 
							
									<input type="hidden" name="groupId" :value="groupId"/>
							 | 
						||
| 
								 | 
							
									<table class="ui table definition selectable">
							 | 
						||
| 
								 | 
							
										<tr>
							 | 
						||
| 
								 | 
							
											<td class="title">选择分组</td>
							 | 
						||
| 
								 | 
							
											<td>
							 | 
						||
| 
								 | 
							
												<div v-if="groups.length > 0">
							 | 
						||
| 
								 | 
							
													<a href="" class="ui label tiny" v-for="group in groups" :class="{blue:group.id == groupId}" style="margin-bottom:0.5em" @click.prevent="selectGroup(group)">{{group.name}}</a>
							 | 
						||
| 
								 | 
							
													<p class="comment">点击可已选中要使用的分组。</p>
							 | 
						||
| 
								 | 
							
												</div>
							 | 
						||
| 
								 | 
							
												<div v-else>
							 | 
						||
| 
								 | 
							
													<p class="comment">暂时还没有可以使用的分组。</p>
							 | 
						||
| 
								 | 
							
												</div>
							 | 
						||
| 
								 | 
							
											</td>
							 | 
						||
| 
								 | 
							
										</tr>
							 | 
						||
| 
								 | 
							
									</table>
							 | 
						||
| 
								 | 
							
									<submit-btn>确定</submit-btn>
							 | 
						||
| 
								 | 
							
								</form>
							 |