feat: 文档库/问题库的分页功能 #91

Manually merged
remilia merged 3 commits from feat/pagination into master 2025-12-02 15:31:50 +08:00
3 changed files with 135 additions and 10 deletions
Showing only changes of commit 97069815dc - Show all commits

View File

@ -101,11 +101,11 @@
defineProps({ defineProps({
productTypeOptions: { productTypeOptions: {
type: Array as () => Array<DocumentListProductType>, type: Array as () => Array<{ id: string; name: string }>,
default: () => [], default: () => [],
}, },
productOptions: { productOptions: {
type: Array as () => Array<DocumentListProduct>, type: Array as () => Array<{ id: string; name: string }>,
default: () => [], default: () => [],
}, },
}); });

View File

@ -22,7 +22,7 @@
class="justify-center pagination-container" class="justify-center pagination-container"
layout="prev, pager, next" layout="prev, pager, next"
hide-on-single-page hide-on-single-page
:page-size="10" :page-size="documentsPerPage"
:total="filteredDocuments.length" :total="filteredDocuments.length"
/> />
</div> </div>

View File

@ -17,7 +17,16 @@
:product-options="productOptions" :product-options="productOptions"
/> />
<question-list :questions="filteredQuestions" /> <question-list :questions="paginatedQuestions" />
<el-pagination
v-model:current-page="page"
class="justify-center pagination-container"
layout="prev, pager, next"
hide-on-single-page
:page-size="questionsPerPage"
:total="filteredQuestions.length"
/>
</div> </div>
</div> </div>
</div> </div>
@ -25,13 +34,21 @@
<script setup lang="ts"> <script setup lang="ts">
const localePath = useLocalePath(); const localePath = useLocalePath();
const route = useRoute();
const filters = reactive({ const filters = reactive({
selectedType: null as number | null, selectedType: null as string | null,
selectedProduct: null as number | null, selectedProduct: null as string | null,
keyword: '', keyword: '',
}); });
const page = ref(1);
const questionsPerPage = 10;
const focusQuestionId = ref<string | null>(
route.query.focus as string | null
);
const breadcrumbItems = [ const breadcrumbItems = [
{ label: $t('navigation.home'), to: localePath('/') }, { label: $t('navigation.home'), to: localePath('/') },
{ label: $t('navigation.support'), to: localePath('/support') }, { label: $t('navigation.support'), to: localePath('/support') },
@ -92,6 +109,34 @@
}); });
}); });
const paginatedQuestions = computed(() => {
const start = (page.value - 1) * questionsPerPage;
const end = page.value * questionsPerPage;
return filteredQuestions.value.slice(start, end);
});
watch(
focusQuestionId,
async (focusId) => {
if (!focusId) return;
if (!import.meta.client) return;
await nextTick();
const question = filteredQuestions.value.find((q) => q.id === focusId);
if (!question) return;
const targetIndex = filteredQuestions.value.indexOf(question);
const targetPage = Math.floor(targetIndex / questionsPerPage) + 1;
onMounted(() => {
if (page.value !== targetPage) {
page.value = targetPage;
}
});
},
{ immediate: true }
);
watch( watch(
() => filters.selectedType, () => filters.selectedType,
() => { () => {
@ -136,4 +181,34 @@
.page-content { .page-content {
padding: 1rem 2rem 2rem; padding: 1rem 2rem 2rem;
} }
.pagination-container {
margin-top: 2rem;
}
:deep(.el-pagination) {
.btn-prev,
.btn-next {
.el-icon {
font-size: 24px;
}
}
.el-pager {
gap: 0.5rem;
}
.el-pager li {
font-size: 1rem;
/* border: 1px solid #409eff; */
border-radius: 50%;
&:hover {
background-color: #ecf5ff;
}
&.is-active {
background-color: var(--el-color-primary);
color: #fff;
}
}
}
</style> </style>