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

51 lines
2.3 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='房屋'jia namespace='machineDetailMeterRead'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='表类型'jia namespace='machineDetailMeterRead'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='表名称'jia namespace='machineDetailMeterRead'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='表号'jia namespace='machineDetailMeterRead'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='抄表读数' namespace='machineDetailMeterRead'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='读表时间' namespace='machineDetailMeterRead'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='说明' namespace='machineDetailMeterRead'></vc:i18n>
</th>
</tr>
</thead>
<tbody>
<tr v-for="detail in machineDetailMeterReadInfo.reads">
<td class="text-center">{{detail.roomName}}</td>
<td class="text-center">{{detail.machineName}}</td>
<td class="text-center">{{detail.typeName}}</td>
<td class="text-center">{{detail.address}}</td>
<td class="text-center">{{detail.curDegrees}}</td>
<td class="text-center">{{detail.curReadingTime}}</td>
<td class="text-center">{{detail.remark}}</td>
</tr>
</tbody>
</table>
<!-- 分页 -->
<div class="row">
<div class="col-sm-4">
</div>
<div class="col-sm-8">
<vc:create namespace="machineDetailMeterRead" path="frame/paginationPlus"></vc:create>
</div>
</div>
</div>
</div>