fix: 修复实体详情页面 检测列表分页错误问题

This commit is contained in:
changyongqiang
2022-05-25 15:57:29 +08:00
parent 97659f47a1
commit 7618ce6ec6
2 changed files with 3 additions and 2 deletions

View File

@@ -63,7 +63,7 @@ export default {
this.pageObj.pageNo = val
const extraParams = {
pageNo: val,
pageSize: this.pageSize
pageSize: this.pageObj.pageSize
}
this.$emit('getDetectionData', this.chartInfo.params.url, extraParams, false, {
startTime: this.queryParams.startTime,

View File

@@ -61,8 +61,9 @@ export default {
this.pageObj.pageNo = val
const extraParams = {
pageNo: val,
pageSize: this.pageSize
pageSize: this.pageObj.pageSize
}
console.log(this.pag)
this.$emit('getDetectionData', this.chartInfo.params.url, extraParams, false, {
startTime: this.queryParams.startTime,
endTime: this.queryParams.endTime