Files
PropertyDeployment/resources/Web/MicroCommunityIotWeb/html/pages/monitor/machineCollect/machineCollect.html
Anfioo be079067e6 version9
4
2026-01-14 11:39:11 +08:00

59 lines
2.6 KiB
HTML

<div>
<div class="ibox">
<div class="ibox-title">
<h5>
<vc:i18n name="收藏视频" namespace="machineCollect"></vc:i18n>
</h5>
<div class="ibox-tools" style="top:10px;">
<button type="button" class="btn btn-primary btn-sm" v-on:click="_openAddMachineCollectModal()">
<vc:i18n name="添加" namespace="machineCollect"></vc:i18n>
</button>
</div>
</div>
<div class="ibox-content ibox-content-auto-height">
<table class="footable table table-stripped toggle-arrow-tiny" data-page-size="15">
<thead>
<tr>
<!-- <th class="text-center">
<vc:i18n name='编号' namespace='machineCollect'></vc:i18n>
</th> -->
<th class="text-center">
<vc:i18n name='设备名称' namespace='machineCollect'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='设备编号' namespace='machineCollect'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='时间' namespace='machineCollect'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='操作'></vc:i18n>
</th>
</tr>
</thead>
<tbody>
<tr v-for="collect in machineCollectInfo.collects">
<td class="text-center">{{collect.machineName}}</td>
<td class="text-center">{{collect.machineCode}}</td>
<td class="text-center">{{collect.createTime}}</td>
<td class="text-center">
<div class="btn-group">
<button class="btn-white btn btn-xs"
v-on:click="_openDeleteMachineCollectModel(collect)">
<vc:i18n name='删除'></vc:i18n>
</button>
</div>
</td>
</tr>
</tbody>
</table>
<!-- 分页 -->
<vc:create path="frame/pagination"></vc:create>
</div>
</div>
<vc:create path="monitor/deleteMachineCollect"></vc:create>
<vc:create path="monitor/selectVideoMachine"></vc:create>
</div>