2020-07-30 22:41:35 +08:00
|
|
|
|
{$layout "layout_popup"}
|
|
|
|
|
|
|
|
|
|
|
|
<h3>选择认证</h3>
|
|
|
|
|
|
|
|
|
|
|
|
<form class="ui form" data-tea-action="$" data-tea-success="success">
|
|
|
|
|
|
<input type="hidden" name="grantId" :value="grantId"/>
|
|
|
|
|
|
<table class="ui table selectable definition">
|
|
|
|
|
|
<tr>
|
|
|
|
|
|
<td class="title">选择认证</td>
|
|
|
|
|
|
<td>
|
|
|
|
|
|
<span v-if="grants.length == 0">暂时还没有可用的认证。</span>
|
2020-10-25 21:27:28 +08:00
|
|
|
|
<a class="ui label small" v-for="grant in grants" :class="{blue:grantId == grant.id}" @click.prevent="selectGrant(grant)" style="margin-bottom:0.5em">{{grant.name}} <span class="small">({{grant.methodName}})</span></a>
|
|
|
|
|
|
<p class="comment">请点击选中某个认证。</p>
|
2020-07-30 22:41:35 +08:00
|
|
|
|
</td>
|
|
|
|
|
|
</tr>
|
|
|
|
|
|
</table>
|
|
|
|
|
|
|
|
|
|
|
|
<submit-btn>确定</submit-btn>
|
|
|
|
|
|
</form>
|