MicroCommunityWeb/public/pages/machine/chargeMachineOrderAccts/chargeMachineOrderAccts.html
2023-09-04 00:50:33 +08:00

68 lines
3.5 KiB
HTML

<div>
<div class="row">
<div class="col-lg-12">
<div class="ibox">
<div class="ibox-title">
<h5><span>
<vc:i18n name="扣款明细" namespace="chargeMachineOrderAccts"></vc:i18n>
</span></h5>
<div class="ibox-tools" style="top:10px;">
<button type="button" class="btn btn-white btn-sm" v-on:click="vc.goBack()">
<vc:i18n name="返回"></vc:i18n>
</button>
</div>
</div>
<div class="ibox-content">
<table class="footable table table-stripped toggle-arrow-tiny" data-page-size="15">
<thead>
<tr>
<th class="text-center">
<vc:i18n name='明细ID' namespace='chargeMachineOrderAccts'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='时间段' namespace='chargeMachineOrderAccts'></vc:i18n>
</th>
<th class="text-center"><span>
<vc:i18n name='小时电价' namespace='chargeMachineOrder'></vc:i18n>
</span></th>
<th class="text-center">
<vc:i18n name='扣款金额' namespace='chargeMachineOrderAccts'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='扣款时间' namespace='chargeMachineOrderAccts'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='说明' namespace='chargeMachineOrderAccts'></vc:i18n>
</th>
</tr>
</thead>
<tbody>
<tr v-for="acct in chargeMachineOrderAcctsInfo.chargeMachineOrderAcctss">
<td class="text-center">{{acct.acctDetailId}}</td>
<td class="text-center">
<div>{{acct.startTime}}</div>
<div>~{{acct.endTime}}</div>
</td>
<td class="text-center">{{acct.durationPrice}}</td>
<td class="text-center">{{acct.amount}}</td>
<td class="text-center">{{acct.createTime}}</td>
<td class="text-center">
<div style="width: 200px;">{{acct.remark}}</div>
</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="7">
<ul class="pagination float-right"></ul>
</td>
</tr>
</tfoot>
</table>
<!-- 分页 -->
<vc:create path="frame/pagination"></vc:create>
</div>
</div>
</div>
</div>
</div>