refactor: 统一管理页面布局 — FilterToolbar + usePageSearchParams + parseListParams

This commit is contained in:
2026-06-04 17:25:36 +08:00
parent 61b479e2be
commit 6f547560d1
40 changed files with 1805 additions and 628 deletions

View File

@@ -59,6 +59,11 @@ export interface CreateProviderRequest {
// 前后端共享的类型都放在这个文件中
// ==========================================
export interface ListSortParams {
sortBy?: string;
sortOrder?: SortOrder;
}
export interface Material {
associatedDate: string;
createdAt: string;
@@ -127,6 +132,8 @@ export type ModelCapability =
| "video-generation"
| "video-recognition";
export type SortOrder = "asc" | "desc";
export interface UpdateConversationRequest {
modelId?: string;
title?: string;