207 lines
11 KiB
HTML
207 lines
11 KiB
HTML
<div>
|
|
|
|
<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">
|
|
<vc:i18n name="催缴单1" namespace="owePayFeeOrder"></vc:i18n>
|
|
</button>
|
|
<button type="button" class="btn btn-primary btn-sm" v-on:click="_printOwnOrder2()"
|
|
v-if="owePayFeeOrderInfo.oweFees.length > 0">
|
|
<vc:i18n name="催缴单2" namespace="owePayFeeOrder"></vc:i18n>
|
|
</button>
|
|
<button type="button" class="btn btn-primary btn-sm" v-on:click="_goBack()">
|
|
<i class="fa fa-close"></i>
|
|
<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">
|
|
<input type="checkbox" class="i-checks all-check" @click="checkAll($event)">
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name="收费对象" namespace="owePayFeeOrder"></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name="费用类型" namespace="owePayFeeOrder"></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name="费用项目" namespace="owePayFeeOrder"></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name="费用标识" namespace="owePayFeeOrder"></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name="费用ID" namespace="owePayFeeOrder"></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name="计费起始时间" namespace="owePayFeeOrder"></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name="计费结束时间" namespace="owePayFeeOrder"></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name="欠费金额" namespace="owePayFeeOrder"></vc:i18n>
|
|
</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.payerObjName}}</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">{{_getEndTime(oweFee)}}</td>
|
|
<td class="text-center"> {{_getDeadlineTime(oweFee)}}</td>
|
|
<td class="text-center">{{oweFee.feeTotalPrice}}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="row">
|
|
<div class="col-md-8"></div>
|
|
<div class="col-md-2"><vc:i18n name="缴费金额:" namespace="owePayFeeOrder"></vc:i18n>
|
|
<span style="font-size: 30px; color: red; padding-left: 0px;">{{owePayFeeOrderInfo.feePrices}}
|
|
<span>
|
|
<vc:i18n name="元" namespace="owePayFeeOrder"></vc:i18n>
|
|
</span>
|
|
</span>
|
|
</div>
|
|
<div class="col-md-1 " style="margin-bottom:10px; text-align:right">
|
|
<button type="button" class="btn btn-success btn-lg btn-block" @click="_openPayFee('qrCode')">
|
|
<vc:i18n name="扫码收费" namespace="owePayFeeOrder"></vc:i18n>
|
|
</button>
|
|
</div>
|
|
<div class="col-md-1 " style="margin-bottom:10px; text-align:right">
|
|
<button type="button" class="btn btn-primary btn-lg btn-block" style="margin-left:10px;"
|
|
v-on:click="_payFee()">
|
|
<vc:i18n name="缴费" namespace="owePayFeeOrder"></vc:i18n>
|
|
</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">
|
|
<vc:i18n name="收费确认" namespace="owePayFeeOrder"></vc:i18n>
|
|
</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-3 col-form-label">
|
|
<vc:i18n name="房屋:" namespace="owePayFeeOrder"></vc:i18n>
|
|
</label>
|
|
<label class="col-sm-9 col-form-label">{{owePayFeeOrderInfo.roomName}}</label>
|
|
</div>
|
|
<div class="row">
|
|
<label class="col-sm-3 col-form-label">
|
|
<vc:i18n name="金额:" namespace="owePayFeeOrder"></vc:i18n>
|
|
</label>
|
|
<label class="col-sm-9 col-form-label">{{owePayFeeOrderInfo.feePrices}}
|
|
<span>
|
|
<vc:i18n name="元" namespace="owePayFeeOrder"></vc:i18n>
|
|
</span>
|
|
</label>
|
|
</div>
|
|
<div class="row form-group">
|
|
<label class="col-sm-3 col-form-label">
|
|
<vc:i18n name="支付方式:" namespace="owePayFeeOrder"></vc:i18n>
|
|
</label>
|
|
<div class="col-sm-9">
|
|
<select class="custom-select" v-model="owePayFeeOrderInfo.primeRate"
|
|
v-if="owePayFeeOrderInfo.payType == 'common'">
|
|
<option selected disabled value="">
|
|
{{vc.i18n('必填,请选择支付方式','owePayFeeOrder')}}
|
|
</option>
|
|
<option v-for="(item,index) in owePayFeeOrderInfo.primeRates" :key="index"
|
|
v-if="item.statusCd != '5' && item.statusCd != '6'" :value="item.statusCd">
|
|
{{item.name}}
|
|
</option>
|
|
</select>
|
|
<select class="custom-select" v-model="owePayFeeOrderInfo.primeRate" v-else>
|
|
<option selected disabled value="">
|
|
{{vc.i18n('必填,请选择支付方式','owePayFeeOrder')}}
|
|
</option>
|
|
<option v-for="(item,index) in owePayFeeOrderInfo.primeRates" :key="index"
|
|
v-if="item.statusCd == '3' || item.statusCd == '4'" :value="item.statusCd">
|
|
{{item.name}}
|
|
</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<label class="col-sm-3 col-form-label">
|
|
<vc:i18n name="备注:" namespace="owePayFeeOrder"></vc:i18n>
|
|
</label>
|
|
<label class="col-sm-9 col-form-label">
|
|
<textarea :placeholder="vc.i18n('可填,请填写备注','owePayFeeOrder')" class="form-control"
|
|
v-model="owePayFeeOrderInfo.remark"></textarea>
|
|
</label>
|
|
</div>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<input v-model="owePayFeeOrderInfo.authCode" id="authCode" class="form-control" style="width: 60%;"
|
|
v-if="owePayFeeOrderInfo.payType == 'qrCode'" type="text" @keyup.enter="_qrCodePayFee"
|
|
:placeholder="vc.i18n('请用扫码枪扫码','owePayFeeOrder')">
|
|
<button type="button" class="btn btn-secondary" @click="_closeDoOwePayFeeModal()">
|
|
<vc:i18n name="关闭" namespace="owePayFeeOrder"></vc:i18n>
|
|
</button>
|
|
<button type="button" class="btn btn-primary" @click="_doPayFee()"
|
|
v-if="owePayFeeOrderInfo.payType == 'common'">
|
|
<vc:i18n name="确定收费" namespace="owePayFeeOrder"></vc:i18n>
|
|
</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">
|
|
<vc:i18n name="缴费提示" namespace="owePayFeeOrder"></vc:i18n>
|
|
</h5>
|
|
<button type="button " class="close" data-dismiss="modal" aria-label="Close">
|
|
<span aria-hidden="true">×</span>
|
|
</button>
|
|
</div>
|
|
<div class="modal-body">
|
|
<p>
|
|
<vc:i18n name="缴费成功" namespace="owePayFeeOrder"></vc:i18n>
|
|
</p>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button type="button" class="btn btn-secondary" @click="_back()">
|
|
<vc:i18n name="返回" namespace="owePayFeeOrder"></vc:i18n>
|
|
</button>
|
|
<button type="button" class="btn btn-primary"
|
|
@click="_printAndBack('ON')">
|
|
<vc:i18n name="合并打印" namespace="owePayFeeOrder"></vc:i18n>
|
|
</button>
|
|
<button type="button" class="btn btn-primary" @click="_printAndBack('OFF')">
|
|
<vc:i18n name="打印收据" namespace="owePayFeeOrder"></vc:i18n>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<vc:create path="fee/printOwnFee"></vc:create>
|
|
</div> |