MicroCommunityWeb/public/pages/fee/shareReadingFee/shareReadingFee.html
2025-03-26 18:19:00 +08:00

100 lines
4.2 KiB
HTML

<div>
<div class="ibox ">
<div class="ibox-title">
<h5>
<vc:i18n name="查询条件"></vc:i18n>
</h5>
<div class="ibox-tools" style="top:10px;">
</div>
</div>
<div class="ibox-content">
<div class="row">
<div class="col-sm-2">
<div class="form-group">
<input type="text" :placeholder="vc.i18n('请填写房屋','shareReadingFee')"
v-model="shareReadingFeeInfo.conditions.roomName" class=" form-control startTime">
</div>
</div>
<div class="col-sm-2">
<div class="form-group">
<input type="text" :placeholder="vc.i18n('请填写业主','shareReadingFee')"
v-model="shareReadingFeeInfo.conditions.ownerNameLike" class=" form-control endTime">
</div>
</div>
<div class="col-sm-1">
<button type="button" class="btn btn-primary btn-sm" v-on:click="_queryShareReadingFeeMethod()">
<vc:i18n name="查询"></vc:i18n>
</button>
</div>
</div>
</div>
</div>
<div class="ibox">
<div class="ibox-title">
<h5>
<vc:i18n name="公摊费用" namespace="shareReadingFee"></vc:i18n>
</h5>
<div class="ibox-tools" style="top:10px;">
<button type="button" class="btn btn-white btn-sm" @click="vc.goBack()">
<vc:i18n name="返回" namespace="shareReadingFee"></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='房屋' namespace='shareReadingFee'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='业主' namespace='shareReadingFee'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='费用名称' namespace='shareReadingFee'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='公摊度数' namespace='shareReadingFee'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='公摊金额' namespace='shareReadingFee'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='说明' namespace='shareReadingFee'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='操作'></vc:i18n>
</th>
</tr>
</thead>
<tbody>
<tr v-for="fee in shareReadingFeeInfo.fees">
<td class="text-center">{{fee.roomName}}</td>
<td class="text-center">{{fee.ownerName}}</td>
<td class="text-center">{{fee.feeName}}</td>
<td class="text-center">{{fee.degrees}}</td>
<td class="text-center">{{fee.amount}}</td>
<td class="text-center">{{fee.remark}}</td>
<td class="text-center">
<div class="btn-group">
<button class="btn-white btn btn-xs" v-on:click="_toFeeDetailPage(fee)">
<vc:i18n name='详情'></vc:i18n>
</button>
</div>
</td>
</tr>
</tbody>
</table>
<!-- 分页 -->
<vc:create path="frame/pagination"></vc:create>
</div>
</div>
</div>