会议信息加上 会议费用 0的判断
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user