Files
EdgeAdmin/web/views/@default/admins/recipients/index.html
2021-08-16 14:44:32 +08:00

51 lines
1.9 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{$layout}
{$template "menu"}
<second-menu>
<menu-item @click.prevent="createRecipient">[创建]</menu-item>
</second-menu>
<p class="comment" v-if="recipients.length == 0">暂时还没有媒介接收人。</p>
<table class="ui table selectable celled" v-if="recipients.length > 0">
<thead>
<tr>
<th>系统用户</th>
<th>媒介类型</th>
<th>接收人标识</th>
<th>所属分组</th>
<th>备注</th>
<th class="two wide">状态</th>
<th class="two op">操作</th>
</tr>
</thead>
<tr v-for="recipient in recipients">
<td><a :href="'/admins/recipients/recipient?recipientId=' + recipient.id">{{recipient.admin.fullname}}</a> <span class="small grey">{{recipient.admin.username}}</span> <link-icon :href="'/admins/admin?adminId=' + recipient.admin.id"></link-icon></td>
<td>{{recipient.instance.name}}</td>
<td>
<span v-if="recipient.user.length > 0">{{recipient.user}}</span>
<span v-else class="disabled">-</span>
</td>
<td>
<div v-if="recipient.groups != null && recipient.groups.length > 0">
<div v-for="group in recipient.groups" class="ui label small basic">{{group.name}}</div>
</div>
<div v-else>
<span class="disabled">-</span>
</div>
</td>
<td>
<span v-if="recipient.description.length > 0">{{recipient.description}}</span>
<span v-else class="disabled">-</span>
</td>
<td>
<label-on :v-is-on="recipient.isOn"></label-on>
</td>
<td>
<a :href="'/admins/recipients/recipient?recipientId=' + recipient.id">详情</a> &nbsp;
<a href="" @click.prevent="deleteRecipient(recipient.id)">删除</a>
</td>
</tr>
</table>
<div class="page" v-html="page"></div>