mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-02-23 21:36:37 +08:00
126 lines
6.2 KiB
HTML
126 lines
6.2 KiB
HTML
<div>
|
|
<div class="row">
|
|
<div class="col-lg-12">
|
|
<div class="ibox">
|
|
<div class="ibox-title">
|
|
<h5>{{owePayFeeOrderInfo.roomName}}</h5>
|
|
<div class="ibox-tools" style="top:10px;">
|
|
<!-- <button type="button" class="btn btn-primary btn-sm" v-on:click="_printOwnOrder()" v-if="owePayFeeOrderInfo.oweFees.length > 0">
|
|
催缴单
|
|
</button> -->
|
|
<button type="button" class="btn btn-primary btn-sm" v-on:click="_goBack()">
|
|
返回
|
|
</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">选择</th>
|
|
<th class="text-center">费用类型</th>
|
|
<th class="text-center">费用项目</th>
|
|
<th class="text-center">费用标识</th>
|
|
<th class="text-center">费用ID</th>
|
|
<th class="text-center">计费起始时间</th>
|
|
<th class="text-center">计费结束时间</th>
|
|
<th class="text-center">欠费金额</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr v-for="oweFee in owePayFeeOrderInfo.oweFees">
|
|
<td class="text-center">
|
|
<input type="checkbox" class="i-checks checkItem" v-bind:value="oweFee.feeId"
|
|
v-model="owePayFeeOrderInfo.selectPayFeeIds">
|
|
</td>
|
|
<td class="text-center">{{oweFee.feeTypeCdName}}</td>
|
|
<td class="text-center">{{oweFee.feeName}}</td>
|
|
<td class="text-center">{{oweFee.feeFlagName}}</td>
|
|
<td class="text-center">{{oweFee.feeId}}</td>
|
|
<td class="text-center">{{oweFee.endTime}}</td>
|
|
<td class="text-center">{{oweFee.deadlineTime}}</td>
|
|
<td class="text-center">{{oweFee.feePrice}}</td>
|
|
</tr>
|
|
</tbody>
|
|
<tfoot>
|
|
<tr>
|
|
<td colspan="7">
|
|
<ul class="pagination float-right"></ul>
|
|
</td>
|
|
</tr>
|
|
</tfoot>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<div class="col-md-9"></div>
|
|
<div class="col-md-2">
|
|
缴费金额:<span style="font-size: 30px; color: red; padding-left: 0px;">{{owePayFeeOrderInfo.feePrices}}元</span>
|
|
</div>
|
|
<div class="col-md-1 " style="margin-bottom:10px; text-align:right">
|
|
<button type="button" class="btn btn-warning btn-lg btn-block" style="margin-left:10px;"
|
|
v-on:click="_payFee()">缴费
|
|
</button>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="doOwePayFeeModal" class="modal" tabindex="-1" role="dialog">
|
|
<div class="modal-dialog" role="document">
|
|
<div class="modal-content">
|
|
<div class="modal-header">
|
|
<h5 class="modal-title">收费确认</h5>
|
|
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
|
<span aria-hidden="true">×</span>
|
|
</button>
|
|
</div>
|
|
<div class="modal-body">
|
|
<div class="row">
|
|
<label class="col-sm-2 col-form-label">房屋:</label>
|
|
<label class="col-sm-10 col-form-label">{{owePayFeeOrderInfo.roomName}}</label>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<label class="col-sm-2 col-form-label">金额:</label>
|
|
<label class="col-sm-10 col-form-label">{{owePayFeeOrderInfo.feePrices}}元</label>
|
|
</div>
|
|
<div class="row">
|
|
<label class="col-sm-2 col-form-label">备注:</label>
|
|
<label class="col-sm-10 col-form-label">
|
|
<textarea placeholder="可填,请填写备注" class="form-control"
|
|
v-model="owePayFeeOrderInfo.remark">
|
|
</textarea>
|
|
</label>
|
|
</div>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button type="button" class="btn btn-secondary" @click="_closeDoOwePayFeeModal()">关闭</button>
|
|
<button type="button" class="btn btn-primary" @click="_doPayFee()">确定收费</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div id="payFeeResult" class="modal" tabindex="-1" role="dialog">
|
|
<div class="modal-dialog" role="document">
|
|
<div class="modal-content">
|
|
<div class="modal-header">
|
|
<h5 class="modal-title">缴费提示</h5>
|
|
<button type="button " class="close" data-dismiss="modal" aria-label="Close">
|
|
<span aria-hidden="true">×</span>
|
|
</button>
|
|
</div>
|
|
<div class="modal-body">
|
|
<p>缴费成功</p>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button type="button" class="btn btn-secondary" @click="_back()">返回</button>
|
|
<button type="button" class="btn btn-primary" @click="_printAndBack()">打印收据</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div> |