mirror of
				https://github.com/TeaOSLab/EdgeAdmin.git
				synced 2025-11-04 05:00:25 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
{$layout "layout_popup"}
 | 
						||
 | 
						||
<h3 v-if="!isUpdating">添加端口绑定</h3>
 | 
						||
<h3 v-if="isUpdating">修改端口绑定</h3>
 | 
						||
<form method="post" class="ui form" data-tea-action="$" data-tea-success="success">
 | 
						||
    <input type="hidden" name="supportRange" :value="supportRange ? 1 : 0"/>
 | 
						||
	<table class="ui table definition selectable">
 | 
						||
		<tr>
 | 
						||
			<td>网络协议</td>
 | 
						||
			<td>
 | 
						||
				<select class="ui dropdown auto-width" name="protocol" v-model="protocol" @change="changeProtocol">
 | 
						||
					<option v-for="p in protocols" :value="p.code">{{p.name}}</option>
 | 
						||
				</select>
 | 
						||
			</td>
 | 
						||
		</tr>
 | 
						||
		<tr>
 | 
						||
			<td class="title">端口 *</td>
 | 
						||
			<td>
 | 
						||
				<input type="text" name="address" ref="focus" v-model="address"/>
 | 
						||
                <p class="comment">可以是一个数字端口(通常不超过65535),也可以是"地址:端口"的方式。<span v-if="supportRange">支持端口范围,形式为<code-label>port1-port2</code-label>。</span>
 | 
						||
                    <span v-if="from.length == 0 && protocol == 'http'">HTTP常用端口为<a href="" title="点击添加" @click.prevent="addPort('80')">80</a>。</span>
 | 
						||
                    <span v-if="from.length == 0 && protocol == 'https'">HTTPS常用端口为<a href="" title="点击添加" @click.prevent="addPort('443')">443</a>。</span>
 | 
						||
                </p>
 | 
						||
			</td>
 | 
						||
		</tr>
 | 
						||
	</table>
 | 
						||
	<submit-btn></submit-btn>
 | 
						||
</form> |