feat: 定时同步和Excel支持分页

This commit is contained in:
junjun 2024-02-04 15:47:58 +08:00
parent a138a0cd95
commit 33d3f0b250

View File

@ -936,7 +936,7 @@ export default {
// table-info
if (this.view && this.view.customAttr) {
const attrSize = JSON.parse(this.view.customAttr).size
if ((this.chart.type === 'table-info' && (!attrSize.tablePageMode || attrSize.tablePageMode === 'page')) {
if (this.chart.type === 'table-info' && (!attrSize.tablePageMode || attrSize.tablePageMode === 'page')) {
requestInfo.goPage = this.currentPage.page
requestInfo.pageSize = this.currentPage.pageSize === parseInt(attrSize.tablePageSize) ? this.currentPage.pageSize : parseInt(attrSize.tablePageSize)
}