赛事开票
Showing
1 changed file
with
4 additions
and
2 deletions
| ... | @@ -87,13 +87,15 @@ | ... | @@ -87,13 +87,15 @@ |
| 87 | </div> | 87 | </div> |
| 88 | </el-col> | 88 | </el-col> |
| 89 | <el-col :lg="3" :md="6" :sm="6" :xs="6" class="text-center"> | 89 | <el-col :lg="3" :md="6" :sm="6" :xs="6" class="text-center"> |
| 90 | <span class="text-warning"> {{ b.payType != '2' ? '¥' : '€' }} | 90 | <span class="text-warning"> {{ b.payType != '2' || !b.totalPayAmount ? '¥' : '€' }} |
| 91 | <span class="bigMoney">{{ b.totalPayAmount || b.totalAmount }}</span> | 91 | <span class="bigMoney">{{ b.totalPayAmount || b.totalAmount }}</span> |
| 92 | </span> | 92 | </span> |
| 93 | </el-col> | 93 | </el-col> |
| 94 | <el-col :lg="6" :md="16" :sm="16" :xs="16"> | 94 | <el-col :lg="6" :md="16" :sm="16" :xs="16"> |
| 95 | <div class="text-right"> | 95 | <div class="text-right"> |
| 96 | <el-button v-if="b.isInvoice == '0'&&!b.invoiceId" plain round type="primary" @click.stop="gokp(b)"> | 96 | <el-button v-if="b.isInvoice == '0'&&!b.invoiceId" :disabled="!b.totalPayAmount||b.totalAmount==0" plain |
| 97 | round type="primary" | ||
| 98 | @click.stop="gokp(b)"> | ||
| 97 | {{ language == 0 ? '申请开票' : 'Invoice' }} | 99 | {{ language == 0 ? '申请开票' : 'Invoice' }} |
| 98 | </el-button> | 100 | </el-button> |
| 99 | <el-button v-if="b.isInvoice == '0'&&b.invoiceId" plain round type="primary" @click.stop="editkp(b)"> | 101 | <el-button v-if="b.isInvoice == '0'&&b.invoiceId" plain round type="primary" @click.stop="editkp(b)"> | ... | ... |
-
Please register or sign in to post a comment