feat: 常见问题页面分页逻辑
All checks were successful
deploy to server / build-and-deploy (push) Successful in 3m31s

- el-pagination提供分页功能
- 从搜索页跳转到本路由时,自动跳转并聚焦指定问题
This commit is contained in:
2025-12-02 15:29:06 +08:00
parent 5194c72695
commit 97069815dc
3 changed files with 81 additions and 6 deletions

View File

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