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

59 lines
2.7 KiB
HTML

<div class="margin-top">
<div class="row margin-top-lg">
</div>
<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="aCarDetailTransactionCar"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="设备编码" namespace="aCarDetailTransactionCar"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="对象类型" namespace="aCarDetailTransactionCar"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="对象名称" namespace="aCarDetailTransactionCar"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="指令" namespace="aCarDetailTransactionCar"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="状态" namespace="aCarDetailTransactionCar"></vc:i18n>
</th>
<th class="text-center" width="80px">
<vc:i18n name="说明" namespace="aCarDetailTransactionCar"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="同步时间" namespace="aCarDetailTransactionCar"></vc:i18n>
</th>
</tr>
</thead>
<tbody>
<tr v-for="machineTranslate in aCarDetailTransactionCarInfo.translates">
<td class="text-center">{{machineTranslate.machineTranslateId}}</td>
<td class="text-center">{{machineTranslate.machineCode}}</td>
<td class="text-center">{{machineTranslate.typeCdName}}</td>
<td class="text-center">{{machineTranslate.objName}}</td>
<td class="text-center">{{machineTranslate.machineCmdName}}</td>
<td class="text-center">{{machineTranslate.stateName}}</td>
<td class="text-center">{{machineTranslate.remark}}</td>
<td class="text-center">{{machineTranslate.updateTime}}</td>
</tr>
</tbody>
</table>
<!-- 分页 -->
<div class="row">
<div class="col-sm-4">
</div>
<div class="col-sm-8">
<vc:create namespace="aCarDetailTransactionCar" path="frame/paginationPlus"></vc:create>
</div>
</div>
</div>
</div>