Files
PropertyDeployment/resources/Web/MicroCommunityWeb/html/components/community/aRoomDetailMeterWaterLog/aRoomDetailMeterWaterLog.html
2025-12-09 20:22:03 +08:00

60 lines
2.7 KiB
HTML

<div>
<div class="row margin-top-lg">
<div class="col-lg-2 padding-right-xs padding-left-xl">
</div>
</div>
<div class="margin-top">
<table class="footable table table-stripped toggle-arrow-tiny" style="margin-top:10px" data-page-size="10">
<thead>
<tr>
<th class="text-center">
<span><vc:i18n name="表类型" namespace="simplifyMeterWaterLog"></vc:i18n></span>
</th>
<th class="text-center">
<span><vc:i18n name="对象名称" namespace="simplifyMeterWaterLog"></vc:i18n></span>
</th>
<th class="text-center">
<span><vc:i18n name="上期度数" namespace="simplifyMeterWaterLog"></vc:i18n></span>
</th>
<th class="text-center">
<span><vc:i18n name="本期度数" namespace="simplifyMeterWaterLog"></vc:i18n></span>
</th>
<th class="text-center">
<span><vc:i18n name="上期读表时间" namespace="simplifyMeterWaterLog"></vc:i18n></span>
</th>
<th class="text-center">
<span><vc:i18n name="本期读表时间" namespace="simplifyMeterWaterLog"></vc:i18n></span>
</th>
<th class="text-center">
<span><vc:i18n name="创建时间" namespace="simplifyMeterWaterLog"></vc:i18n></span>
</th>
<!--<th class="text-center">
<span><vc:i18n name="操作" namespace="simplifyMeterWaterLog"></vc:i18n></span>
</th>-->
</tr>
</thead>
<tbody>
<tr v-for="meterWater in aRoomDetailMeterWaterLogInfo.meterWaters">
<!-- <td class="text-center">{{_getMeteTypeName(meterWater.meterType)}}</td> -->
<td class="text-center">{{meterWater.meterTypeName}}</td>
<td class="text-center">{{meterWater.objName}}</td>
<td class="text-center">{{meterWater.preDegrees}}</td>
<td class="text-center">{{meterWater.curDegrees}}</td>
<td class="text-center">{{meterWater.preReadingTime}}</td>
<td class="text-center">{{meterWater.curReadingTime}}</td>
<td class="text-center">{{meterWater.createTime}}</td>
</tr>
</tbody>
</table>
<div class="row">
<div class="col-sm-5">
<span></span>
</div>
<div class="col-sm-7 float-right">
<vc:create namespace="simplifyMeterWaterLog" path="frame/paginationPlus"></vc:create>
</div>
</div>
</div>
</div>