|
@ -108,7 +108,10 @@ export default {
|
|
|
this.localPagination = ['auto', true].includes(this.showPagination) && Object.assign({}, this.localPagination, {
|
|
|
current: localPageNum,
|
|
|
pageSize: this.pageSize,
|
|
|
showSizeChanger: this.showSizeChanger
|
|
|
showSizeChanger: this.showSizeChanger,
|
|
|
showTotal: (total, range) => {
|
|
|
return range[0] + '-' + range[1] + '共' + total + '条'
|
|
|
}
|
|
|
}) || false
|
|
|
// console.log('this.localPagination', this.localPagination)
|
|
|
this.needTotalList = this.initTotalList(this.columns)
|