feat:重构推荐页面,添加推荐数据源接口并更新路由和视图

This commit is contained in:
jxxghp
2025-02-08 21:47:57 +08:00
parent 52843dcf97
commit 5def9d5f81
10 changed files with 210 additions and 87 deletions

View File

@@ -1244,3 +1244,11 @@ export interface DiscoverSource {
// 过滤参数UI配置
filter_ui: RenderProps[]
}
// 推荐的数据源
export interface RecommendSource {
// 数据源名称
name: string
// 媒体数据源API地址
api_path: string
}