Files
EdgeAdmin/web/views/@default/servers/server/settings/conds/addCondPopup.html

28 lines
860 B
HTML
Raw Normal View History

2020-09-29 11:28:39 +08:00
{$layout "layout_popup"}
<h3 v-if="!isUpdating">添加子条件</h3>
<h3 v-if="isUpdating">修改子条件</h3>
2020-11-10 12:47:24 +08:00
<form method="post" class="ui form" data-tea-action="$" data-tea-success="success">
2020-09-29 11:28:39 +08:00
<table class="ui table definition selectable">
<tr>
<td class="title">选择条件类型</td>
<td>
<select class="ui dropdown auto-width" name="condType" v-model="condType" @change="changeCondType">
2020-09-29 11:28:39 +08:00
<option v-for="c in components" :value="c.type">{{c.name}}</option>
</select>
{$ range .components}
<p class="comment" v-if="condType == '{$ .Type}'">{$ .Description}</p>
{$ end}
</td>
</tr>
<tr>
<td>{{paramsTitle}}</td>
2020-09-29 11:28:39 +08:00
<td>
{$ range .components}
<{$ .Component} v-if="condType == '{$ .Type}'" :v-cond="cond"></{$ .Component}>
{$ end}
</td>
</tr>
</table>
<submit-btn>确定</submit-btn>
2020-09-29 11:28:39 +08:00
</form>