73 lines
1.2 KiB
Vue
73 lines
1.2 KiB
Vue
|
|
<script setup lang="ts">
|
||
|
|
|
||
|
|
import {ref} from "vue";
|
||
|
|
|
||
|
|
const columns = [
|
||
|
|
// {
|
||
|
|
// title: '发票代码',
|
||
|
|
// dataIndex: 'invoiceCode',
|
||
|
|
// key: 'invoiceCode',
|
||
|
|
// },
|
||
|
|
{
|
||
|
|
title: '发票号码',
|
||
|
|
dataIndex: 'invoiceNumber',
|
||
|
|
key: 'invoiceNumber',
|
||
|
|
},
|
||
|
|
{
|
||
|
|
title: '不含税金额',
|
||
|
|
dataIndex: 'invoiceAmountPreTax',
|
||
|
|
key: 'invoiceAmountPreTax',
|
||
|
|
},
|
||
|
|
{
|
||
|
|
title: '税额',
|
||
|
|
dataIndex: 'invoiceTax',
|
||
|
|
key: 'invoiceTax',
|
||
|
|
},
|
||
|
|
{
|
||
|
|
title: '价税合计',
|
||
|
|
dataIndex: 'totalAmount',
|
||
|
|
key: 'totalAmount',
|
||
|
|
},
|
||
|
|
{
|
||
|
|
title: '开票日期',
|
||
|
|
dataIndex: 'invoiceDate',
|
||
|
|
key: 'invoiceDate',
|
||
|
|
},
|
||
|
|
{
|
||
|
|
title: '销方名称',
|
||
|
|
dataIndex: 'sellerName',
|
||
|
|
key: 'sellerName',
|
||
|
|
},
|
||
|
|
{
|
||
|
|
title: '销方税号',
|
||
|
|
dataIndex: 'sellerTaxNumber',
|
||
|
|
key: 'sellerTaxNumber',
|
||
|
|
},
|
||
|
|
{
|
||
|
|
title: '查验结果',
|
||
|
|
dataIndex: 'cyjgxx',
|
||
|
|
key: 'cyjgxx',
|
||
|
|
},
|
||
|
|
{
|
||
|
|
title: '查验次数',
|
||
|
|
dataIndex: 'inspectionAmount',
|
||
|
|
key: 'inspectionAmount',
|
||
|
|
},
|
||
|
|
{
|
||
|
|
title: '查验时间',
|
||
|
|
dataIndex: 'verify_time',
|
||
|
|
key: 'verify_time',
|
||
|
|
}
|
||
|
|
|
||
|
|
]
|
||
|
|
let data = ref( [])
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<template>
|
||
|
|
<a-table :columns="columns" :data-source="data">
|
||
|
|
</a-table>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<style scoped>
|
||
|
|
|
||
|
|
</style>
|