fix:项目不分页数据访问统一设置pageSize为-1

This commit is contained in:
wangwenrui
2020-04-15 19:40:09 +08:00
parent d342d7a782
commit cf083ea965
11 changed files with 28 additions and 25 deletions

View File

@@ -320,7 +320,7 @@
},
getProjectList() {
this.$get('project', {pageNo: 1, pageSize: 9999}).then(response => {
this.$get('project', {pageNo: 1, pageSize: -1}).then(response => {
if (response.code == 200) {
this.linkObjList = response.data.list;
}
@@ -328,7 +328,7 @@
},
getModuleList() {
this.$get('module', {pageNo: 1, pageSize: 9999}).then(response => {
this.$get('module', {pageNo: 1, pageSize: -1}).then(response => {
if (response.code == 200) {
this.linkObjList = response.data.list;
}
@@ -336,7 +336,7 @@
},
getAssetList() {
this.$get('asset', {pageNo: 1, pageSize: 9999}).then(response => {
this.$get('asset', {pageNo: 1, pageSize: -1}).then(response => {
if (response.code == 200) {
this.linkObjList = response.data.list;
}