mirror of
				https://github.com/TeaOSLab/EdgeAdmin.git
				synced 2025-11-04 05:00:25 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			45 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
{$layout "layout_popup"}
 | 
						|
 | 
						|
<h3>修改分组</h3>
 | 
						|
 | 
						|
<form method="post" class="ui form" data-tea-action="$" data-tea-success="success">
 | 
						|
	<input type="hidden" name="groupId" :value="group.id"/>
 | 
						|
	<table class="ui table definition selectable">
 | 
						|
		<tr>
 | 
						|
			<td class="title">分组名称 *</td>
 | 
						|
			<td>
 | 
						|
				<input type="text" name="name" maxlength="100" ref="focus" v-model="group.name"/>
 | 
						|
				<p class="comment">给分组起一个容易识别的名称</p>
 | 
						|
			</td>
 | 
						|
		</tr>
 | 
						|
        <tr>
 | 
						|
            <td>代号</td>
 | 
						|
            <td>
 | 
						|
                <input type="text" name="code" maxlength="100" v-model="group.code"/>
 | 
						|
                <p class="comment">在导入时可以合并相同代号的分组。</p>
 | 
						|
            </td>
 | 
						|
        </tr>
 | 
						|
		<tr>
 | 
						|
			<td colspan="2"><more-options-indicator></more-options-indicator></td>
 | 
						|
		</tr>
 | 
						|
		<tbody v-show="moreOptionsVisible">
 | 
						|
			<tr>
 | 
						|
				<td>分组描述</td>
 | 
						|
				<td>
 | 
						|
					<textarea name="description" maxlength="200" rows="3" v-model="group.description"></textarea>
 | 
						|
				</td>
 | 
						|
			</tr>
 | 
						|
			<tr>
 | 
						|
				<td>是否启用</td>
 | 
						|
				<td>
 | 
						|
					<div class="ui checkbox">
 | 
						|
						<input type="checkbox" name="isOn" value="1" v-model="group.isOn" />
 | 
						|
						<label></label>
 | 
						|
					</div>
 | 
						|
				</td>
 | 
						|
			</tr>
 | 
						|
		</tbody>
 | 
						|
	</table>
 | 
						|
 | 
						|
	<submit-btn></submit-btn>
 | 
						|
</form> |