mirror of
https://gitee.com/xuliangzhan_admin/vxe-table.git
synced 2026-01-21 05:27:57 +08:00
201 lines
6.2 KiB
Vue
201 lines
6.2 KiB
Vue
<template>
|
||
<div>
|
||
<p class="tip">
|
||
统计编辑列的表尾合计,对于某些场景下如果需要频繁计算的可以手动调用 <table-api-link prop="updateFooter"/> 函数<br>
|
||
<span class="red">(注:<table-api-link prop="footer-method"/> 合计的逻辑都是自行实现的,该示例仅供参考)</span>
|
||
</p>
|
||
|
||
<vxe-toolbar export>
|
||
<template v-slot:buttons>
|
||
<vxe-button @click="insertEvent">新增</vxe-button>
|
||
<vxe-button @click="getInsertEvent">获取新增</vxe-button>
|
||
</template>
|
||
</vxe-toolbar>
|
||
|
||
<vxe-table
|
||
border
|
||
show-footer
|
||
show-overflow
|
||
highlight-hover-row
|
||
ref="xTable"
|
||
height="400"
|
||
class="editable-footer"
|
||
:footer-method="footerMethod"
|
||
:footer-cell-class-name="footerCellClassName"
|
||
:data="tableData"
|
||
:edit-config="{trigger: 'click', mode: 'row'}">
|
||
<vxe-table-column type="seq" width="60"></vxe-table-column>
|
||
<vxe-table-column field="name" title="Name" :edit-render="{name: 'input'}"></vxe-table-column>
|
||
<vxe-table-column field="age" title="Age" :edit-render="{name: 'input'}"></vxe-table-column>
|
||
<vxe-table-column field="date" title="Date" :edit-render="{name: 'input'}"></vxe-table-column>
|
||
<vxe-table-column field="address" title="Address" :edit-render="{name: 'input'}"></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 {
|
||
tableData: [],
|
||
demoCodes: [
|
||
`
|
||
<vxe-toolbar export>
|
||
<template v-slot:buttons>
|
||
<vxe-button @click="insertEvent">新增</vxe-button>
|
||
<vxe-button @click="getInsertEvent">获取新增</vxe-button>
|
||
</template>
|
||
</vxe-toolbar>
|
||
|
||
<vxe-table
|
||
border
|
||
show-footer
|
||
show-overflow
|
||
highlight-hover-row
|
||
ref="xTable"
|
||
height="400"
|
||
class="editable-footer"
|
||
:footer-method="footerMethod"
|
||
:footer-cell-class-name="footerCellClassName"
|
||
:data="tableData"
|
||
:edit-config="{trigger: 'click', mode: 'row'}">
|
||
<vxe-table-column type="seq" width="60"></vxe-table-column>
|
||
<vxe-table-column field="name" title="Name" :edit-render="{name: 'input'}"></vxe-table-column>
|
||
<vxe-table-column field="age" title="Age" :edit-render="{name: 'input'}"></vxe-table-column>
|
||
<vxe-table-column field="date" title="Date" :edit-render="{name: 'input'}"></vxe-table-column>
|
||
<vxe-table-column field="address" title="Address" :edit-render="{name: 'input'}"></vxe-table-column>
|
||
</vxe-table>
|
||
`,
|
||
`
|
||
export default {
|
||
data () {
|
||
return {
|
||
tableData: []
|
||
}
|
||
},
|
||
created () {
|
||
this.tableData = window.MOCK_DATA_LIST.slice(0, 20)
|
||
},
|
||
methods: {
|
||
footerCellClassName ({ $rowIndex, column, columnIndex }) {
|
||
if (columnIndex === 0) {
|
||
if ($rowIndex === 0) {
|
||
return 'col-blue'
|
||
} else {
|
||
return 'col-red'
|
||
}
|
||
}
|
||
},
|
||
footerMethod ({ columns, data }) {
|
||
return [
|
||
columns.map((column, columnIndex) => {
|
||
if (columnIndex === 0) {
|
||
return '平均'
|
||
}
|
||
if (['age'].includes(column.property)) {
|
||
return XEUtils.mean(data, column.property)
|
||
}
|
||
return null
|
||
}),
|
||
columns.map((column, columnIndex) => {
|
||
if (columnIndex === 0) {
|
||
return '和值'
|
||
}
|
||
if (['age'].includes(column.property)) {
|
||
return XEUtils.sum(data, column.property)
|
||
}
|
||
return null
|
||
})
|
||
]
|
||
},
|
||
insertEvent () {
|
||
let record = {
|
||
name: 'New name'
|
||
}
|
||
this.$refs.xTable.insert(record).then(({ row }) => this.$refs.xTable.setActiveCell(row, 'age'))
|
||
},
|
||
getInsertEvent () {
|
||
let insertRecords = this.$refs.xTable.getInsertRecords()
|
||
this.$XModal.alert(insertRecords.length)
|
||
}
|
||
}
|
||
}
|
||
`
|
||
]
|
||
}
|
||
},
|
||
created () {
|
||
this.tableData = window.MOCK_DATA_LIST.slice(0, 20)
|
||
},
|
||
mounted () {
|
||
Array.from(this.$el.querySelectorAll('pre code')).forEach((block) => {
|
||
hljs.highlightBlock(block)
|
||
})
|
||
},
|
||
methods: {
|
||
footerCellClassName ({ $rowIndex, columnIndex }) {
|
||
if (columnIndex === 0) {
|
||
if ($rowIndex === 0) {
|
||
return 'col-blue'
|
||
} else {
|
||
return 'col-red'
|
||
}
|
||
}
|
||
},
|
||
footerMethod ({ columns, data }) {
|
||
return [
|
||
columns.map((column, columnIndex) => {
|
||
if (columnIndex === 0) {
|
||
return '平均'
|
||
}
|
||
if (['age'].includes(column.property)) {
|
||
return XEUtils.mean(data, column.property)
|
||
}
|
||
return null
|
||
}),
|
||
columns.map((column, columnIndex) => {
|
||
if (columnIndex === 0) {
|
||
return '和值'
|
||
}
|
||
if (['age'].includes(column.property)) {
|
||
return XEUtils.sum(data, column.property)
|
||
}
|
||
return null
|
||
})
|
||
]
|
||
},
|
||
insertEvent () {
|
||
const record = {
|
||
name: 'New name'
|
||
}
|
||
this.$refs.xTable.insert(record).then(({ row }) => this.$refs.xTable.setActiveCell(row, 'age'))
|
||
},
|
||
getInsertEvent () {
|
||
const insertRecords = this.$refs.xTable.getInsertRecords()
|
||
this.$XModal.alert(insertRecords.length)
|
||
}
|
||
}
|
||
}
|
||
</script>
|
||
|
||
<style>
|
||
.editable-footer .vxe-footer--column.col-blue {
|
||
background-color: #2db7f5;
|
||
color: #fff;
|
||
}
|
||
.editable-footer .vxe-footer--column.col-red {
|
||
background-color: red;
|
||
color: #fff;
|
||
}
|
||
</style>
|