Files
vxe-table/examples/views/table/advanced/Print.vue
xuliangzhan 35fc3f399d 优化渲染
2020-01-01 16:38:50 +08:00

170 lines
4.9 KiB
Vue

<template>
<div>
<p class="tip">通过调用 <table-api-link prop="print"/> 函数打印表格</p>
<vxe-toolbar>
<template v-slot:buttons>
<vxe-button @click="printEvent">打印</vxe-button>
<vxe-button @click="printSelectEvent">打印选中</vxe-button>
<vxe-button @click="exportDataEvent">导出与打印</vxe-button>
</template>
</vxe-toolbar>
<vxe-table
border
show-footer
export-config
ref="xTable"
height="500"
:footer-method="footerMethod"
:data="tableData">
<vxe-table-column type="checkbox" width="60"></vxe-table-column>
<vxe-table-column type="seq" width="60"></vxe-table-column>
<vxe-table-column field="name" title="Name"></vxe-table-column>
<vxe-table-column field="role" title="Role"></vxe-table-column>
<vxe-table-column field="age" title="Age"></vxe-table-column>
<vxe-table-column field="date12" title="Date"></vxe-table-column>
</vxe-table>
<p class="demo-code">{{ $t('app.body.button.showCode') }}</p>
<pre>
<code class="xml">{{ demoCodes[0] }}</code>
<code class="javascript">{{ demoCodes[1] }}</code>
</pre>
</div>
</template>
<script>
import XEUtils from 'xe-utils'
import hljs from 'highlight.js'
export default {
data () {
return {
frameUrl: '',
tableData: [],
demoCodes: [
`
<vxe-toolbar>
<template v-slot:buttons>
<vxe-button @click="printEvent">打印</vxe-button>
<vxe-button @click="printSelectEvent">打印选中</vxe-button>
<vxe-button @click="exportDataEvent">导出与打印</vxe-button>
</template>
</vxe-toolbar>
<vxe-table
border
show-footer
export-config
ref="xTable"
height="500"
:footer-method="footerMethod"
:data="tableData">
<vxe-table-column type="checkbox" width="60"></vxe-table-column>
<vxe-table-column type="seq" width="60"></vxe-table-column>
<vxe-table-column field="name" title="Name"></vxe-table-column>
<vxe-table-column field="role" title="Role"></vxe-table-column>
<vxe-table-column field="age" title="Age"></vxe-table-column>
<vxe-table-column field="date12" title="Date"></vxe-table-column>
</vxe-table>
`,
`
export default {
data () {
return {
tableData: []
}
},
created () {
this.tableData = window.MOCK_DATA_LIST.slice(0, 20)
},
methods: {
printEvent () {
this.$refs.xTable.print()
},
printSelectEvent () {
this.$refs.xTable.print({
data: this.$refs.xTable.getCheckboxRecords()
})
},
exportDataEvent () {
this.$refs.xTable.openExport()
},
footerMethod ({ columns, data }) {
const footerData = [
columns.map((column, columnIndex) => {
if (columnIndex === 0) {
return '平均'
}
if (['age', 'rate'].includes(column.property)) {
return XEUtils.mean(data, column.property)
}
return null
}),
columns.map((column, columnIndex) => {
if (columnIndex === 0) {
return '和值'
}
if (['age', 'rate'].includes(column.property)) {
return XEUtils.sum(data, column.property)
}
return null
})
]
return footerData
}
}
}
`
]
}
},
created () {
this.tableData = window.MOCK_DATA_LIST.slice(0, 20)
},
mounted () {
Array.from(this.$el.querySelectorAll('pre code')).forEach((block) => {
hljs.highlightBlock(block)
})
},
methods: {
printEvent () {
this.$refs.xTable.print()
},
printSelectEvent () {
this.$refs.xTable.print({
data: this.$refs.xTable.getCheckboxRecords()
})
},
exportDataEvent () {
this.$refs.xTable.openExport()
},
footerMethod ({ columns, data }) {
const footerData = [
columns.map((column, columnIndex) => {
if (columnIndex === 0) {
return '平均'
}
if (['age', 'rate'].includes(column.property)) {
return XEUtils.mean(data, column.property)
}
return null
}),
columns.map((column, columnIndex) => {
if (columnIndex === 0) {
return '和值'
}
if (['age', 'rate'].includes(column.property)) {
return XEUtils.sum(data, column.property)
}
return null
})
]
return footerData
}
}
}
</script>