MicroCommunityWeb/public/components/owner/aOwnerDetailAccessControl/aOwnerDetailAccessControl.html
2025-03-02 00:22:38 +08:00

54 lines
2.3 KiB
HTML

<div class="margin-top">
<div class="row margin-top-lg">
</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="aOwnerDetailAccessControl"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="对象名称" namespace="aOwnerDetailAccessControl"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="指令" namespace="aOwnerDetailAccessControl"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="状态" namespace="aOwnerDetailAccessControl"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="说明" namespace="aOwnerDetailAccessControl"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="同步时间" namespace="aOwnerDetailAccessControl"></vc:i18n>
</th>
</tr>
</thead>
<tbody>
<tr v-for="machineTranslate in aOwnerDetailAccessControlInfo.translates">
<td class="text-center">{{machineTranslate.typeCdName}}</td>
<td class="text-center">{{machineTranslate.objName}}</td>
<td class="text-center">{{machineTranslate.machineCmdName}}</td>
<td class="text-center">{{machineTranslate.stateName}}</td>
<td class="text-center">
<div class="hc-td">{{machineTranslate.remark}}</div>
</td>
<td class="text-center">{{machineTranslate.updateTime}}</td>
</tr>
</tbody>
</table>
<!-- 分页 -->
<div class="row">
<div class="col-sm-4">
</div>
<div class="col-sm-8">
<vc:create namespace="aOwnerDetailAccessControl" path="frame/paginationPlus"></vc:create>
</div>
</div>
</div>
</div>