Skip to content

Commit 39b5895

Browse files
committed
fix: #I5IZA7 列表的时间区间查询修改后提示缺少"params"
1 parent 70b8537 commit 39b5895

File tree

5 files changed

+5
-9
lines changed

5 files changed

+5
-9
lines changed

src/views/bpm/form/index.vue

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,10 +101,8 @@ export default {
101101
/** 查询列表 */
102102
getList() {
103103
this.loading = true;
104-
// 处理查询参数
105-
let params = {...this.queryParams};
106104
// 执行查询
107-
getFormPage(params).then(response => {
105+
getFormPage(this.queryParams).then(response => {
108106
this.list = response.data.list;
109107
this.total = response.data.total;
110108
this.loading = false;

src/views/infra/file/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ export default {
131131
getList() {
132132
this.loading = true;
133133
// 执行查询
134-
getFilePage(params).then(response => {
134+
getFilePage(this.queryParams).then(response => {
135135
this.list = response.data.list;
136136
this.total = response.data.total;
137137
this.loading = false;

src/views/mall/market/banner/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ export default {
165165
getList() {
166166
this.loading = true;
167167
// 执行查询
168-
getBannerPage(params).then(response => {
168+
getBannerPage(this.queryParams).then(response => {
169169
this.list = response.data.list;
170170
this.total = response.data.total;
171171
this.loading = false;

src/views/mall/product/spu/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -571,7 +571,7 @@
571571
getList() {
572572
this.loading = true;
573573
// 执行查询
574-
getSpuPage(params).then(response => {
574+
getSpuPage(this.queryParams).then(response => {
575575
this.list = response.data.list;
576576
this.total = response.data.total;
577577
this.loading = false;

src/views/system/oauth2/client/index.vue

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -206,10 +206,8 @@ export default {
206206
/** 查询列表 */
207207
getList() {
208208
this.loading = true;
209-
// 处理查询参数
210-
let params = {...this.queryParams};
211209
// 执行查询
212-
getOAuth2ClientPage(params).then(response => {
210+
getOAuth2ClientPage(this.queryParams).then(response => {
213211
this.list = response.data.list;
214212
this.total = response.data.total;
215213
this.loading = false;

0 commit comments

Comments
 (0)