mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-02-24 05:46:03 +08:00
41 lines
1.5 KiB
HTML
41 lines
1.5 KiB
HTML
<div class="margin-top">
|
|
<div class="row margin-top-lg">
|
|
<!-- <div class="col-lg-2 padding-right-xs padding-left-xl">
|
|
<input v-model="dataReportEarnedWayStatisticsInfo.roomNum" type="text" :placeholder="vc.i18n('请填写房屋编号','dataReportEarnedWayStatistics')" class="form-control">
|
|
</div>
|
|
<div class="col-lg-2 padding-right-xs padding-right-xl">
|
|
<button type="button" class="btn btn-primary btn-sm" style="margin-left:10px" v-on:click="_qureyDataReportEarnedStatistics()">
|
|
<i class="fa fa-search"></i>查询
|
|
</button>
|
|
</div>
|
|
|
|
<div class="col-lg-8 text-right">
|
|
|
|
|
|
</div> -->
|
|
</div>
|
|
<div class="margin-top">
|
|
<table class="footable table table-stripped toggle-arrow-tiny" data-page-size="15">
|
|
<thead>
|
|
<tr>
|
|
<template v-for="(item,index) in dataReportEarnedWayStatisticsInfo.fees">
|
|
<th class="text-center">
|
|
{{item.name}}
|
|
</th>
|
|
</template>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<template v-for="(item,index) in dataReportEarnedWayStatisticsInfo.fees">
|
|
<td class="text-center" >
|
|
{{item.receivedAmount || 0}}
|
|
</td>
|
|
</template>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<!-- 分页 -->
|
|
|
|
</div>
|
|
</div> |