Compare commits

...

4 Commits

Author SHA1 Message Date
b746247ccc feat(pagination): 问题库/文档库的分页功能实现
All checks were successful
deploy to server / build-and-deploy (push) Successful in 3m18s
- 为文档库/问题库实现分页功能,当前按照一页10个栏目分页
- 问题跳转时确保能够正常触发分页逻辑与聚焦逻辑
- 调整部分graphQL改动导致的类型匹配问题
2025-12-02 15:31:25 +08:00
97069815dc feat: 常见问题页面分页逻辑
All checks were successful
deploy to server / build-and-deploy (push) Successful in 3m31s
- el-pagination提供分页功能
- 从搜索页跳转到本路由时,自动跳转并聚焦指定问题
2025-12-02 15:29:06 +08:00
5194c72695 feat: 文档库分页功能
- el-pagination提供分页功能
2025-12-02 14:49:26 +08:00
dbe75ee080 fix: 调整变量类型
- 将id相关类型由number修改为string,符合graphQL规范
2025-12-02 14:33:10 +08:00
3 changed files with 135 additions and 10 deletions

View File

@ -101,19 +101,19 @@
defineProps({
productTypeOptions: {
type: Array as () => Array<{ id: number; name: string }>,
type: Array as () => Array<{ id: string; name: string }>,
default: () => [],
},
productOptions: {
type: Array as () => Array<{ id: number; name: string }>,
type: Array as () => Array<{ id: string; name: string }>,
default: () => [],
},
});
const model = defineModel<{
keyword: string;
selectedType: number | null;
selectedProduct: number | null;
selectedType: string | null;
selectedProduct: string | null;
}>();
</script>

View File

@ -15,7 +15,16 @@
:product-type-options="productTypeOptions"
:product-options="productOptions"
/>
<document-list :documents="filteredDocuments" />
<!-- <document-list :documents="filteredDocuments" /> -->
<document-list :documents="paginatedDocuments" />
<el-pagination
v-model:current-page="page"
class="justify-center pagination-container"
layout="prev, pager, next"
hide-on-single-page
:page-size="documentsPerPage"
:total="filteredDocuments.length"
/>
</div>
</div>
</div>
@ -30,11 +39,14 @@
];
const filters = reactive({
selectedType: null as number | null,
selectedProduct: null as number | null,
selectedType: null as string | null,
selectedProduct: null as string | null,
keyword: '',
});
const page = ref(1);
const documentsPerPage = 10;
const { data: documents, pending, error } = await useDocumentList();
const productTypeOptions = computed(() => {
@ -92,6 +104,13 @@
});
});
const paginatedDocuments = computed(() => {
return filteredDocuments.value.slice(
(page.value - 1) * documentsPerPage,
page.value * documentsPerPage
);
});
watch(
() => filters.selectedType,
() => {
@ -153,4 +172,35 @@
height: 40px;
font-size: 0.9rem;
}
.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>

View File

@ -17,7 +17,16 @@
: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>
@ -25,13 +34,21 @@
<script setup lang="ts">
const localePath = useLocalePath();
const route = useRoute();
const filters = reactive({
selectedType: null as number | null,
selectedProduct: null as number | null,
selectedType: null as string | null,
selectedProduct: null as string | null,
keyword: '',
});
const page = ref(1);
const questionsPerPage = 10;
const focusQuestionId = ref<string | null>(
route.query.focus as string | null
);
const breadcrumbItems = [
{ label: $t('navigation.home'), to: localePath('/') },
{ 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(
() => filters.selectedType,
() => {
@ -136,4 +181,34 @@
.page-content {
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>