refactor: 重写filter页面 更新为search

This commit is contained in:
2026-08-14 21:08:45 +08:00
parent 37d720ebc3
commit b3038603e8
10 changed files with 350 additions and 624 deletions

View File

@@ -3,6 +3,7 @@ export type Tag = {
code: string
name: string
}
export type Post = {
title: string;
summary: string;
@@ -12,7 +13,7 @@ export type Post = {
category_code: string;
category_id?: number;
published_at: string;
view: number;
view_count: number;
content: string;
tags: Tag[]
}