会议信息加上 会议费用 0的判断

This commit is contained in:
fengachen
2021-11-30 11:04:58 +08:00
parent f259fd6218
commit 8d79de5f1b
+4 -4
View File
@@ -109,8 +109,8 @@
<span> {{ situationInfo.departureTime }}</span>
</a-col>
</a-row>
<!-- 只有参会人才会显示 -->
<a-row :gutter="24" class="flex-col" v-show="situationInfo.identity === 2">
<!-- 只有参会人才会显示 会议费用为 0 不显示 -->
<a-row :gutter="24" class="flex-col" v-show="situationInfo.identity === 2 && model.meetingCosts !== '0.00' ">
<a-col :span="12">
<label>付款方式</label>
<span><j-ellipsis :value="situationInfo.payMode_dictText" :length="20"></j-ellipsis></span>
@@ -121,9 +121,9 @@
<span><j-ellipsis :value="situationInfo.needInvoice_dictText" :length="20"></j-ellipsis></span>
</a-col>
</a-row>
<!-- 缴费方式为打包时候 不需要发票 不显示 -->
<!-- 缴费方式为打包时候 不需要发票 不显示 会议费用为 0 不显示 -->
<a-row :gutter="24"
v-if=" situationInfo.needInvoice !== 0 && situationInfo.identity === 2 "
v-if=" situationInfo.needInvoice !== 0 && situationInfo.identity === 2 && model.meetingCosts !== '0.00' "
class="flex-col">
<a-col :span="12">
<label>发票邮寄地址</label>