project page limit
This commit is contained in:
parent
3171ba063c
commit
ba4c27281e
|
@ -135,7 +135,9 @@
|
||||||
list() {
|
list() {
|
||||||
let url = "/project/list/" + this.currentPage + '/' + this.pageSize;
|
let url = "/project/list/" + this.currentPage + '/' + this.pageSize;
|
||||||
this.result = this.$post(url, {}, (response) => {
|
this.result = this.$post(url, {}, (response) => {
|
||||||
this.items = response.data;
|
let data = response.data;
|
||||||
|
this.items = data.listObject;
|
||||||
|
this.total = data.itemCount;
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
handleSizeChange(size) {
|
handleSizeChange(size) {
|
||||||
|
|
Loading…
Reference in New Issue