[fix-bug]-费用核验中,判断条件的修改

This commit is contained in:
fengchenchen
2023-07-31 16:52:34 +08:00
parent 0ca0cb605a
commit 188961eb33
@@ -107,8 +107,8 @@
<!--缴费状态--费用核验中 付款方式为电汇 的时候 提示 对公银行预计15个工作日完成费用核验请耐心等待-->
<template slot-scope="text,record" slot="paymentStatus">
<a-tooltip>
<template slot="title">{{ record.paymentStatus === 1 && record.paymentMethod === PaymentMethodEnums.wireTransfer.index ? '对公银行预计15个工作日完成费用核验,请耐心等待' : text }}</template>
<div class="table-text" :class="'inner-payment-status-'+ record.paymentStatus">{{ text }}<span class="inner-notice" v-if="record.paymentStatus === 1 && record.paymentMethod === PaymentMethodEnums.wireTransfer.index">?</span></div>
<template slot="title">{{ record.paymentStatus === 1 ? '对公银行预计15个工作日完成费用核验,请耐心等待' : text }}</template>
<div class="table-text" :class="'inner-payment-status-'+ record.paymentStatus">{{ text }}<span class="inner-notice" v-if="record.paymentStatus === 1 ">?</span></div>
</a-tooltip>
</template>