|
@@ -27,8 +27,8 @@
|
|
<div class="column-label-cell-tip">支持客户换开或查看发票</div>
|
|
<div class="column-label-cell-tip">支持客户换开或查看发票</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
- <template v-slot:invoice_order_code="{ row }">
|
|
|
|
- <span class="column-cell" @click="getInvoiceDetailInfo(row.row)">{{ row.row.invoice_order_code }}</span>
|
|
|
|
|
|
+ <template v-slot:id="{ row }">
|
|
|
|
+ <span class="column-cell" @click="getInvoiceDetailInfo(row.row)">{{ row.row.id }}</span>
|
|
</template>
|
|
</template>
|
|
<template v-slot:code_url="{ row }">
|
|
<template v-slot:code_url="{ row }">
|
|
<span class="column-cell" @click="getInvoiceInfo(row.row)">查看</span>
|
|
<span class="column-cell" @click="getInvoiceInfo(row.row)">查看</span>
|
|
@@ -78,7 +78,7 @@ export default {
|
|
data() {
|
|
data() {
|
|
return {
|
|
return {
|
|
invoiceColumns: [
|
|
invoiceColumns: [
|
|
- { prop: 'invoice_order_code', label: '发票ID', width: 160 },
|
|
|
|
|
|
+ { prop: 'id', label: '发票ID', width: 160 },
|
|
{ prop: 'invoice_number', label: '发票编号', width: 160 },
|
|
{ prop: 'invoice_number', label: '发票编号', width: 160 },
|
|
{ prop: 'invoice_money', label: '关联订单开票金额', width: 160 },
|
|
{ prop: 'invoice_money', label: '关联订单开票金额', width: 160 },
|
|
{ prop: 'invoice_status', label: '发票状态', width: 120 },
|
|
{ prop: 'invoice_status', label: '发票状态', width: 120 },
|