40 lines
1.9 KiB
HTML
40 lines
1.9 KiB
HTML
<div id="payFeeResult" class="modal" role="dialog">
|
|
<div class="modal-dialog" role="document">
|
|
<div class="modal-content">
|
|
<div class="modal-header">
|
|
<h5 class="modal-title">
|
|
<vc:i18n name="缴费提示" namespace="payFeeOrderResult"></vc:i18n>
|
|
</h5>
|
|
<button type="button" class="close" @click="_back()">
|
|
<span aria-hidden="true">×</span>
|
|
</button>
|
|
</div>
|
|
<div class="modal-body">
|
|
<p>
|
|
<vc:i18n name="缴费成功" namespace="payFeeOrderResult"></vc:i18n>
|
|
</p>
|
|
<p v-if="!payFeeOrderResultInfo.receiptId">
|
|
<vc:i18n name="请到业务受理页面补打收据" namespace="payFeeOrderResult"></vc:i18n>
|
|
</p>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button type="button" class="btn btn-secondary" @click="_back()">
|
|
<vc:i18n name="返回" namespace="payFeeOrderResult"></vc:i18n>
|
|
</button>
|
|
<button type="button" class="btn btn-primary" v-if="payFeeOrderResultInfo.receiptId"
|
|
@click="_printSmallAndBack()">
|
|
<vc:i18n name="打印小票" namespace="payFeeOrderResult"></vc:i18n>
|
|
</button>
|
|
<button type="button" class="btn btn-primary" v-if="payFeeOrderResultInfo.receiptId"
|
|
@click="_printAndBack('ON')">
|
|
<vc:i18n name="合并打印" namespace="payFeeOrderResult"></vc:i18n>
|
|
</button>
|
|
<button type="button" class="btn btn-primary" v-if="payFeeOrderResultInfo.receiptId"
|
|
@click="_printAndBack('OFF')">
|
|
<vc:i18n name="打印收据" namespace="payFeeOrderResult"></vc:i18n>
|
|
</button>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div> |