Skip to content

Commit 5207420

Browse files
committed
--bug=158619061 【ITSM2.8】切换分页条数报错
# Reviewed, transaction id: 81167
1 parent 8496755 commit 5207420

13 files changed

Lines changed: 13 additions & 0 deletions

File tree

frontend/pc/src/views/processManagement/apiConfigure/apiTable.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -394,6 +394,7 @@
394394
},
395395
// 分页过滤数据
396396
handlePageLimitChange() {
397+
this.pagination.current = 1;
397398
this.pagination.limit = arguments[0];
398399
const customPaging = {
399400
page: this.pagination.current,

frontend/pc/src/views/processManagement/basicModule/index.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -229,6 +229,7 @@
229229
},
230230
// 分页过滤数据
231231
handlePageLimitChange() {
232+
this.pagination.current = 1;
232233
this.pagination.limit = arguments[0];
233234
this.getList();
234235
},

frontend/pc/src/views/processManagement/processDesign/processHome/ProcessHome.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -424,6 +424,7 @@
424424
},
425425
// 分页过滤数据
426426
handlePageLimitChange() {
427+
this.pagination.current = 1;
427428
this.pagination.limit = arguments[0];
428429
this.getList();
429430
},

frontend/pc/src/views/processManagement/publicField/index.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -466,6 +466,7 @@
466466
this.getList();
467467
},
468468
handlePageLimitChange() {
469+
this.pagination.current = 1;
469470
this.pagination.limit = arguments[0];
470471
this.getList();
471472
},

frontend/pc/src/views/processManagement/version/index.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -329,6 +329,7 @@
329329
},
330330
// 分页过滤数据
331331
handlePageLimitChange() {
332+
this.pagination.current = 1;
332333
this.pagination.limit = arguments[0];
333334
this.getList();
334335
},

frontend/pc/src/views/service/directoryCom/treeTable.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -498,6 +498,7 @@
498498
},
499499
// 分页过滤数据
500500
addPageLimitChange() {
501+
this.entryInfo.pagination.current = 1;
501502
this.entryInfo.pagination.limit = arguments[0];
502503
this.getEntryList();
503504
},

frontend/pc/src/views/service/serviceList.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1088,6 +1088,7 @@
10881088
// 分页过滤数据
10891089
handlePageLimitChange() {
10901090
this.pagination.limit = arguments[0];
1091+
this.pagination.current = 1;
10911092
this.getList();
10921093
},
10931094
changeCheck(value) {

frontend/pc/src/views/slaManager/agreement.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -387,6 +387,7 @@
387387
},
388388
// 分页过滤数据
389389
handlePageLimitChange() {
390+
this.pagination.current = 1;
390391
this.pagination.limit = arguments[0];
391392
this.getList();
392393
},

frontend/pc/src/views/systemConfig/component/addDataDirectory.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -316,6 +316,7 @@
316316
},
317317
// 分页过滤数据
318318
handlePageLimitChange() {
319+
this.pagination.current = 1;
319320
this.pagination.limit = arguments[0];
320321
this.getList();
321322
},

frontend/pc/src/views/systemConfig/dataDictionary.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -255,6 +255,7 @@
255255
},
256256
// 分页过滤数据
257257
handlePageLimitChange() {
258+
this.pagination.current = 1;
258259
this.pagination.limit = arguments[0];
259260
this.getList();
260261
},

0 commit comments

Comments
 (0)