mirror of
https://github.com/iczer/vue-antd-admin
synced 2025-04-05 19:41:37 +08:00
89 lines
2.3 KiB
Vue
89 lines
2.3 KiB
Vue
<template>
|
|
<div class="standard-table">
|
|
<div class="alert">
|
|
<a-alert type="info" :show-icon="true">
|
|
<div slot="message">
|
|
已选择 <a style="font-weight: 600">{{selectedRows.length}}</a> 项
|
|
<div v-for="(item, index) in needTotalList" :key="index">
|
|
<div v-if="item.needTotal">
|
|
{{item.title}}总计
|
|
<a :key="index" style="font-weight: 600">
|
|
{{item.customRender ? item.customRender(item.total) : item.total}}
|
|
</a>
|
|
</div>
|
|
</div>
|
|
<a style="margin-left: 24px">清空</a>
|
|
</div>
|
|
</a-alert>
|
|
</div>
|
|
<a-table
|
|
:bordered="bordered"
|
|
:loading="loading"
|
|
:columns="columns"
|
|
:dataSource="dataSource"
|
|
:rowKey="rowKey"
|
|
:pagination="pagination"
|
|
:rowSelection="{selectedRowKeys: selectedRowKeys, onChange: updateSelect}"
|
|
>
|
|
</a-table>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'StandardTable',
|
|
props: ['bordered', 'loading', 'columns', 'dataSource', 'rowKey', 'pagination', 'selectedRows'],
|
|
data () {
|
|
return {
|
|
needTotalList: [],
|
|
selectedRowKeys: []
|
|
}
|
|
},
|
|
methods: {
|
|
updateSelect (selectedRowKeys, selectedRows) {
|
|
this.selectedRowKeys = selectedRowKeys
|
|
let list = this.needTotalList
|
|
this.needTotalList = list.map(item => {
|
|
return {
|
|
...item,
|
|
total: selectedRows.reduce((sum, val) => {
|
|
return sum + val[item.dataIndex]
|
|
}, 0)
|
|
}
|
|
})
|
|
this.$emit('change', selectedRowKeys, selectedRows)
|
|
},
|
|
initTotalList (columns) {
|
|
const totalList = []
|
|
columns.forEach(column => {
|
|
if (column.needTotal) {
|
|
totalList.push({...column, total: 0})
|
|
}
|
|
})
|
|
return totalList
|
|
}
|
|
},
|
|
created () {
|
|
this.needTotalList = this.initTotalList(this.columns)
|
|
},
|
|
watch: {
|
|
'selectedRows': function (selectedRows) {
|
|
this.needTotalList = this.needTotalList.map(item => {
|
|
return {
|
|
...item,
|
|
total: selectedRows.reduce((sum, val) => {
|
|
return sum + val[item.dataIndex]
|
|
}, 0)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.alert{
|
|
margin-bottom: 16px;
|
|
}
|
|
</style>
|