feat(SiteResource): 添加站点资源分类功能并优化资源查询逻辑

This commit is contained in:
jxxghp
2025-02-18 16:27:31 +08:00
parent 2c687e5648
commit 5e587dfd88
3 changed files with 76 additions and 20 deletions

View File

@@ -1254,3 +1254,10 @@ export interface RecommendSource {
// 媒体数据源API地址
api_path: string
}
// 站点资源分类
export interface SiteCategory {
id: number
cat: string
desc: string
}