diff --git a/src/views/tag/TagManage.vue b/src/views/tag/TagManage.vue index 6f916eda..59f11516 100644 --- a/src/views/tag/TagManage.vue +++ b/src/views/tag/TagManage.vue @@ -132,17 +132,6 @@ @showSizeChange="handleSizeChange" /> - @@ -221,18 +210,18 @@
-
@@ -596,9 +585,17 @@ export default { state.courseDialogVisible = false; }; - // 课程分页变化 + const changeCoursePagination = (page) => { + console.log('handleSizeChange page :', page + " , pageSize = " + pageSize); state.courseSearchParam.pageNo = page; + state.courseSearchParam.pageSize = page; + getCourseListByTag(); + }; + const changeCourseSizePagination = (page) => { + console.log('changeCourseSizePagination page :', page + " , pageSize = " + pageSize); + state.courseSearchParam.pageNo = 1; + state.courseSearchParam.pageSize = page; getCourseListByTag(); }; @@ -678,6 +675,7 @@ export default { showCourseByTagg, closeCourseDialog, changeCoursePagination, + changeCourseSizePagination, unbindCurrentTag, formatDate, exportTag,