mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-14 20:30:25 +08:00
43 lines
1.7 KiB
HTML
43 lines
1.7 KiB
HTML
{$layout "layout_popup"}
|
||
<h3>添加特殊页面</h3>
|
||
<form method="post" class="ui form" data-tea-action="$" data-tea-success="success">
|
||
<table class="ui table selectable definition">
|
||
<tr>
|
||
<td class="title">响应状态码 *</td>
|
||
<td>
|
||
<input type="text" name="status" size="3" placeholder="状态码" maxlength="3" style="width:5.2em" ref="focus"/>
|
||
<p class="comment">比如404,或者50x。</p>
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<td>内容类型 *</td>
|
||
<td>
|
||
<select class="ui dropdown auto-width" name="bodyType" v-model="bodyType">
|
||
<option v-for="bodyType in bodyTypes" :value="bodyType.code">{{bodyType.name}}</option>
|
||
</select>
|
||
</td>
|
||
</tr>
|
||
<tr v-show="bodyType == 'url'">
|
||
<td>URL *</td>
|
||
<td>
|
||
<input type="text" name="url" maxlength="500" placeholder="页面文件路径或者完整的URL"/>
|
||
<p class="comment">页面文件是相对于节点安装目录的页面文件比如web/pages/40x.html,或者一个完整的URL。</p>
|
||
</td>
|
||
</tr>
|
||
<tr v-show="bodyType == 'html'">
|
||
<td>HTML *</td>
|
||
<td>
|
||
<textarea name="body" ref="htmlBody"></textarea>
|
||
<p class="comment"><a href="" @click.prevent="addHTMLTemplate">[使用模板]</a>。填写页面的HTML内容,支持请求变量。</p>
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<td>新状态码</td>
|
||
<td>
|
||
<input type="text" name="newStatus" size="3" placeholder="状态码" maxlength="3" style="width:5.2em"/>
|
||
<p class="comment">可以用来修改响应的状态码,不填表示不改变原有状态码。</p>
|
||
</td>
|
||
</tr>
|
||
</table>
|
||
<submit-btn></submit-btn>
|
||
</form> |