MicroCommunityWeb/public/components/fee/simplifyCallable/simplifyCallable.html
2023-09-16 02:32:57 +08:00

95 lines
4.8 KiB
HTML

<div>
<div class="row margin-top">
<div class="col-lg-10 text-right"></div>
<div class="col-lg-2 text-right">
<button type="button" class="btn btn-primary btn-sm" v-if="simplifyCallableInfo.roomId" v-on:click="_openWritePrintOweFeeCallableModal()">
<vc:i18n name="登记" namespace="simplifyRoomFee"></vc:i18n>
</button>
<button type="button" class="btn btn-primary btn-sm" v-if="simplifyCallableInfo.roomId" v-on:click="_openAddOweFeeCallableModal()">
<vc:i18n name="催缴" namespace="simplifyRoomFee"></vc:i18n>
</button>
<button type="button" class="btn btn-primary btn-sm" v-if="simplifyCallableInfo.roomId" v-on:click="_printOwnOrder()">
<vc:i18n name="催缴单" namespace="simplifyRoomFee"></vc:i18n>
</button>
</div>
</div>
<div>
<table class="footable table table-stripped toggle-arrow-tiny" style="margin-top:10px" data-page-size="10">
<thead>
<tr>
<th class="text-center">
<vc:i18n name='编号' namespace='simplifyCallable'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='业主名称' namespace='simplifyCallable'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='付费对象名称' namespace='simplifyCallable'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='费用名称' namespace='simplifyCallable'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='催缴金额' namespace='simplifyCallable'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='欠费时间段' namespace='simplifyCallable'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='催缴方式' namespace='simplifyCallable'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='催缴人' namespace='simplifyCallable'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='状态' namespace='simplifyCallable'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='说明' namespace='simplifyCallable'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='创建时间' namespace='simplifyCallable'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='操作'></vc:i18n>
</th>
</tr>
</thead>
<tbody>
<tr v-for="callable in simplifyCallableInfo.callables">
<td class="text-center">{{callable.ofcId}}</td>
<td class="text-center">{{callable.ownerName}}</td>
<td class="text-center">{{callable.payerObjName}}</td>
<td class="text-center">{{callable.feeName}}</td>
<td class="text-center">{{callable.amountdOwed}}</td>
<td class="text-center">{{callable.startTime}}</br>
~{{callable.endTime}}
</td>
<td class="text-center">{{callable.callableWayName}}</td>
<td class="text-center">{{callable.staffName}}</td>
<td class="text-center">{{callable.stateName}}</td>
<td class="text-center">
<div class="textAuto" style="max-width: 200px;">{{callable.remark}}</div>
</td>
<td class="text-center">{{callable.createTime}}</td>
<td class="text-center">
<div class="btn-group">
<button class="btn-white btn btn-xs"
v-on:click="_openDeleteOweFeeCallableModel(callable)">
<vc:i18n name='删除'></vc:i18n>
</button>
</div>
</td>
</tr>
</tbody>
</table>
<div class="row">
<div class="col-sm-12 float-right">
<vc:create namespace="simplifyCallable" path="frame/paginationPlus"></vc:create>
</div>
</div>
</div>
<vc:create path="fee/writeOweFeeCallable"></vc:create>
<vc:create path="fee/deleteOweFeeCallable"></vc:create>
</div>