|
@@ -101,9 +101,9 @@
|
|
|
</div>
|
|
|
<template v-if="orderInvoice">
|
|
|
<div class="order-item">
|
|
|
- <p>发票抬头:<span class="none" v-if="orderInvoice.type > 0">{{ orderInvoice.invoiceTitle ? orderInvoice.invoiceTitle : '无' }}</span></p>
|
|
|
- <p>单位税号:<span class="none" v-if="orderInvoice.type === 2 || orderInvoice.headingType === 1">{{ orderInvoice.corporationTaxNum ? orderInvoice.corporationTaxNum : '无' }}</span> </p>
|
|
|
- <p>注册地址:<span class="none" v-if="orderInvoice.type === 2 || orderInvoice.headingType === 1">{{ orderInvoice.registeredAddress ? orderInvoice.registeredAddress : '无' }}</span> </p>
|
|
|
+ <p v-if="orderInvoice.type > 0">发票抬头:<span class="none">{{ orderInvoice.invoiceTitle ? orderInvoice.invoiceTitle : '无' }}</span></p>
|
|
|
+ <p v-if="orderInvoice.type === 2 || orderInvoice.headingType === 1">单位税号:<span class="none">{{ orderInvoice.corporationTaxNum ? orderInvoice.corporationTaxNum : '无' }}</span> </p>
|
|
|
+ <p v-if="orderInvoice.type === 2 || orderInvoice.headingType === 1">注册地址:<span class="none" >{{ orderInvoice.registeredAddress ? orderInvoice.registeredAddress : '无' }}</span> </p>
|
|
|
</div>
|
|
|
<div class="order-item" v-if="orderInvoice.type === 2 || orderInvoice.headingType === 1">
|
|
|
<p>注册电话:<span class="none">{{ orderInvoice.registeredPhone ? orderInvoice.registeredPhone : '无' }}</span></p>
|