优化缴费报错页面

This commit is contained in:
java110 2021-08-05 00:32:16 +08:00
parent 02aa0453e8
commit 04aac91ef8
3 changed files with 8 additions and 2 deletions

View File

@ -140,11 +140,12 @@
</div>
<div class="modal-body">
<p>缴费成功</p>
<p v-if="!payFeeOrderInfo.receiptId">请到业务受理页面补打收据</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" @click="_back()">返回</button>
<button type="button" class="btn btn-primary" @click="_printSmallAndBack()">打印小票</button>
<button type="button" class="btn btn-primary" @click="_printAndBack()">打印收据</button>
<button type="button" class="btn btn-primary" v-if="payFeeOrderInfo.receiptId" @click="_printSmallAndBack()">打印小票</button>
<button type="button" class="btn btn-primary" v-if="payFeeOrderInfo.receiptId" @click="_printAndBack()">打印收据</button>
</div>
</div>
</div>

View File

@ -38,6 +38,10 @@
{{vc.dateFormat(item.startTime)}}至{{vc.dateSubOneDay(vc.dateFormat(item.startTime),vc.dateFormat(item.endTime),item.feeFlag)}}</br>
{{item.preDegrees}} 至 {{item.curDegrees}}
</td>
<!-- 根据山东 需求 如果为押金时 显示为无-->
<td class="text-center" v-else-if="item.feeTypeCd == '888800010006'">
</td>
<td class="text-center" v-else>
{{vc.dateFormat(item.startTime)}}至{{vc.dateSubOneDay(vc.dateFormat(item.startTime),vc.dateFormat(item.endTime),item.feeFlag)}}
</td>

View File

@ -101,6 +101,7 @@
$that.printPayFeeInfo.feeReceipt.forEach(im =>{
if(item.receiptId == im.receiptId){
item.objName = im.objName;
item.feeTypeCd = im.feeTypeCd;
}
})
})