处理联系人分组页面分页的问题

This commit is contained in:
renpy 2023-08-28 16:46:50 +08:00
parent ba92c98c7e
commit 24a86494f2

View File

@ -155,7 +155,7 @@ export default {
spinning:false,
page: {
currentPage:1,
pageSize: 3,
pageSize: 10,
pageSizeOptions: ['10', '20', '30'],
total:0
},
@ -192,8 +192,7 @@ export default {
this.spinning = true
let params = {
pageNo: this.page.currentPage,
// pageSize:this.page.pageSize
pageSize:3
pageSize:this.page.pageSize
}
getAction("/alarmContactGroup/findPage", params).then(res => {
this.spinning = false