MicroCommunityWeb/public/components/staff/staffDetailAppAuth/staffDetailAppAuth.html
2023-12-26 19:44:23 +08:00

53 lines
2.3 KiB
HTML

<div class="">
<div class="row">
<div class="col-sm-2"></div>
<div class="col-sm-2"></div>
<div class="col-lg-8 text-right">
<button type="button" class="btn btn-white btn-sm" v-on:click="_qureyStaffDetailAppAuth()">
<i class="fa fa-refresh"></i>刷新
</button>
</div>
</div>
<div class="margin-top">
<table class="footable table table-stripped toggle-arrow-tiny" data-page-size="15">
<thead>
<tr>
<th class="text-center">
<vc:i18n name="员工名称" namespace="staffDetailAppAuth"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="认证方式" namespace="staffDetailAppAuth"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="认证名称" namespace="staffDetailAppAuth"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="认证ID" namespace="staffDetailAppAuth"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="认证状态" namespace="staffDetailAppAuth"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="认证时间" namespace="staffDetailAppAuth"></vc:i18n>
</th>
</tr>
</thead>
<tbody>
<tr>
<td class="text-center">{{staffDetailAppAuthInfo.staffName}}</td>
<td class="text-center">{{staffDetailAppAuthInfo.appType}}</td>
<td class="text-center">{{staffDetailAppAuthInfo.openName}}</td>
<td class="text-center">{{staffDetailAppAuthInfo.openId}}</td>
<td class="text-center">{{staffDetailAppAuthInfo.stateName}}</td>
<td class="text-center">{{staffDetailAppAuthInfo.createTime}}</td>
</tr>
</tbody>
</table>
<!-- 分页 -->
<div class="row">
<div class="col-sm-4"></div>
<div class="col-sm-8"></div>
</div>
</div>
<vc:create path="property/addStaffAppAuth" callBackListener="" callBackFunction=""></vc:create>
</div>