Files
2025-12-09 20:22:03 +08:00

51 lines
2.2 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="template in eventDetailEventTemplateInfo.templates">
<td class="text-center">{{template.templateId}}</td>
<td class="text-center">{{template.templateName}}</td>
<td class="text-center">{{template.eventWayName}}</td>
<td class="text-center">{{template.createTime}}</td>
<td class="text-center">{{template.remark}}</td>
<td>
<div class="btn-group">
<button class="btn-white btn btn-xs" v-on:click="_openViewEventTemplateParamModel(template)">
<vc:i18n name='模板参数'></vc:i18n>
</button>
</div>
</td>
</tr>
</tbody>
</table>
<!-- 分页 -->
<div class="row">
<div class="col-sm-4">
</div>
<div class="col-sm-8">
<vc:create namespace="eventDetailEventTemplate" path="frame/paginationPlus"></vc:create>
</div>
</div>
</div>
</div>
<vc:create path="event/viewEventTemplateParam"></vc:create>