样式调整

This commit is contained in:
670788339
2025-11-05 09:18:13 +08:00
parent 43e83a97e4
commit 6ce2088ac8

View File

@@ -214,7 +214,7 @@
v-if="courseTableTotal > 0"
:show-total="total => `${courseTableTotal}`"
:showSizeChanger="true"
:pageSizeOptions="['10', '20', '30', '40']"
:pageSizeOptions="['5','10', '15', '20']"
:showQuickJumper="true"
:hideOnSinglePage="false"
:pageSize="coursePageSize"
@@ -586,13 +586,13 @@ export default {
};
const changeCoursePagination = (page) => {
const changeCoursePagination = (page, pageSize) => {
console.log('handleSizeChange page :', page + " , pageSize = " + pageSize);
state.courseSearchParam.pageNo = page;
state.courseSearchParam.pageSize = page;
getCourseListByTag();
};
const changeCourseSizePagination = (page) => {
const changeCourseSizePagination = (page, pageSize) => {
console.log('changeCourseSizePagination page :', page + " , pageSize = " + pageSize);
state.courseSearchParam.pageNo = 1;
state.courseSearchParam.pageSize = page;