diff --git a/yudao-ui-admin/src/views/bpm/form/index.vue b/yudao-ui-admin/src/views/bpm/form/index.vue index d592a9ddf..d0be4153f 100644 --- a/yudao-ui-admin/src/views/bpm/form/index.vue +++ b/yudao-ui-admin/src/views/bpm/form/index.vue @@ -101,10 +101,8 @@ export default { /** 查询列表 */ getList() { this.loading = true; - // 处理查询参数 - let params = {...this.queryParams}; // 执行查询 - getFormPage(params).then(response => { + getFormPage(this.queryParams).then(response => { this.list = response.data.list; this.total = response.data.total; this.loading = false; diff --git a/yudao-ui-admin/src/views/infra/file/index.vue b/yudao-ui-admin/src/views/infra/file/index.vue index 9d38a7484..b09026e44 100644 --- a/yudao-ui-admin/src/views/infra/file/index.vue +++ b/yudao-ui-admin/src/views/infra/file/index.vue @@ -131,7 +131,7 @@ export default { getList() { this.loading = true; // 执行查询 - getFilePage(params).then(response => { + getFilePage(this.queryParams).then(response => { this.list = response.data.list; this.total = response.data.total; this.loading = false; diff --git a/yudao-ui-admin/src/views/mall/market/banner/index.vue b/yudao-ui-admin/src/views/mall/market/banner/index.vue index daa3c488e..ce5b1c750 100644 --- a/yudao-ui-admin/src/views/mall/market/banner/index.vue +++ b/yudao-ui-admin/src/views/mall/market/banner/index.vue @@ -165,7 +165,7 @@ export default { getList() { this.loading = true; // 执行查询 - getBannerPage(params).then(response => { + getBannerPage(this.queryParams).then(response => { this.list = response.data.list; this.total = response.data.total; this.loading = false; diff --git a/yudao-ui-admin/src/views/mall/product/spu/index.vue b/yudao-ui-admin/src/views/mall/product/spu/index.vue index a61431a5c..849bc7445 100644 --- a/yudao-ui-admin/src/views/mall/product/spu/index.vue +++ b/yudao-ui-admin/src/views/mall/product/spu/index.vue @@ -571,7 +571,7 @@ getList() { this.loading = true; // 执行查询 - getSpuPage(params).then(response => { + getSpuPage(this.queryParams).then(response => { this.list = response.data.list; this.total = response.data.total; this.loading = false; diff --git a/yudao-ui-admin/src/views/system/oauth2/client/index.vue b/yudao-ui-admin/src/views/system/oauth2/client/index.vue index 4f474ab2f..8abe53f9b 100755 --- a/yudao-ui-admin/src/views/system/oauth2/client/index.vue +++ b/yudao-ui-admin/src/views/system/oauth2/client/index.vue @@ -206,10 +206,8 @@ export default { /** 查询列表 */ getList() { this.loading = true; - // 处理查询参数 - let params = {...this.queryParams}; // 执行查询 - getOAuth2ClientPage(params).then(response => { + getOAuth2ClientPage(this.queryParams).then(response => { this.list = response.data.list; this.total = response.data.total; this.loading = false;