fix: #I5IZA7 列表的时间区间查询修改后提示缺少"params"

This commit is contained in:
xingyu 2022-07-28 10:33:49 +08:00
parent d87c19a933
commit 3e416c19bb
5 changed files with 5 additions and 9 deletions

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;