Files
PropertyDeployment/resources/Web/MicroCommunityIotWeb/html/components/property/eventDetailEventRule/eventDetailEventRule.html
2025-12-09 20:22:03 +08:00

43 lines
1.8 KiB
HTML

<div class="margin-top">
<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='规则ID' namespace='eventDetailEventRule'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='规则名称' namespace='eventDetailEventRule'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='超时时间' namespace='eventDetailEventRule'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='创建时间' namespace='eventDetailEventRule'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='备注' namespace='eventDetailEventRule'></vc:i18n>
</th>
</tr>
</thead>
<tbody>
<tr v-for="eventRule in eventDetailEventRuleInfo.rules">
<td class="text-center">{{eventRule.ruleId}}</td>
<td class="text-center">{{eventRule.ruleName}}</td>
<td class="text-center">{{eventRule.limitTime}}分钟</td>
<td class="text-center">{{eventRule.createTime}}</td>
<td class="text-center">{{eventRule.remark}}</td>
</tr>
</tbody>
</table>
<!-- 分页 -->
<div class="row">
<div class="col-sm-4">
</div>
<div class="col-sm-8">
<vc:create namespace="eventDetailEventRule" path="frame/paginationPlus"></vc:create>
</div>
</div>
</div>
</div>