提交 8f5bd326 authored 作者: matian's avatar matian

update:更新代码

上级 5c05ea96
...@@ -214,7 +214,19 @@ export default { ...@@ -214,7 +214,19 @@ export default {
{ label: '发票申请日期', prop: 'invoice_application_time', align: 'center', minWidth: '150px' }, { label: '发票申请日期', prop: 'invoice_application_time', align: 'center', minWidth: '150px' },
{ label: '开票时间', prop: 'invoice_issuing_time', align: 'center', minWidth: '150px' }, { label: '开票时间', prop: 'invoice_issuing_time', align: 'center', minWidth: '150px' },
{ label: '发票状态', prop: 'invoiceStatusViewName', align: 'center', minWidth: '100px' }, { label: '发票状态', prop: 'invoiceStatusViewName', align: 'center', minWidth: '100px' },
{ label: '票据领取状态', prop: 'receive_status', align: 'center', minWidth: '100px' }, {
label: '票据领取状态',
prop: 'receive_status',
align: 'center',
minWidth: '100px',
computed({ row }) {
if (row.invoice_type === '2') {
return ''
} else {
return row.receive_status
}
}
},
{ label: '票据领取时间', prop: 'receive_time', align: 'center', minWidth: '200px' }, { label: '票据领取时间', prop: 'receive_time', align: 'center', minWidth: '200px' },
{ label: '操作', slots: 'table-x', align: 'center', fixed: 'right', minWidth: '200px' } { label: '操作', slots: 'table-x', align: 'center', fixed: 'right', minWidth: '200px' }
] ]
......
...@@ -65,7 +65,9 @@ ...@@ -65,7 +65,9 @@
</template> </template>
<template #footer> <template #footer>
<span>已选择{{ multipleSelection.length }}</span> <span>已选择{{ multipleSelection.length }}</span>
<el-button @click="exportSelect" style="margin-left: 40px" :disabled="multipleSelection.length === 0">导出</el-button> <el-button @click="exportSelect" style="margin-left: 40px" :disabled="multipleSelection.length === 0"
>导出</el-button
>
<el-button @click="exportAll" style="margin-left: 40px">导出全部</el-button> <el-button @click="exportAll" style="margin-left: 40px">导出全部</el-button>
</template> </template>
</app-list> </app-list>
...@@ -80,7 +82,7 @@ ...@@ -80,7 +82,7 @@
:row="row" :row="row"
/> />
<el-drawer <el-drawer
size="20%" size="30%"
title="历史开票信息" title="历史开票信息"
:visible.sync="historyVisible" :visible.sync="historyVisible"
top="15px" top="15px"
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论