From 3e416c19bb1df6cd8d1c509b43349e64e596858f Mon Sep 17 00:00:00 2001 From: xingyu Date: Thu, 28 Jul 2022 10:33:49 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20#I5IZA7=20=E5=88=97=E8=A1=A8=E7=9A=84?= =?UTF-8?q?=E6=97=B6=E9=97=B4=E5=8C=BA=E9=97=B4=E6=9F=A5=E8=AF=A2=E4=BF=AE?= =?UTF-8?q?=E6=94=B9=E5=90=8E=E6=8F=90=E7=A4=BA=E7=BC=BA=E5=B0=91"params"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- yudao-ui-admin/src/views/bpm/form/index.vue | 4 +--- yudao-ui-admin/src/views/infra/file/index.vue | 2 +- yudao-ui-admin/src/views/mall/market/banner/index.vue | 2 +- yudao-ui-admin/src/views/mall/product/spu/index.vue | 2 +- yudao-ui-admin/src/views/system/oauth2/client/index.vue | 4 +--- 5 files changed, 5 insertions(+), 9 deletions(-) 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;