feat: add solutions list/detail pages

- types: SolutionPageSummary/Detail
- services/solution.service.ts
- app/solutions: list + detail pages
- Header nav: add 解决方案 link
This commit is contained in:
2026-08-06 16:24:08 +08:00
parent b5fe5e13ab
commit 73d2465ef2
5 changed files with 113 additions and 0 deletions
+9
View File
@@ -147,3 +147,12 @@ export interface CaseStudyPageSummary extends WagtailPageSummary {
export interface CaseStudyPageDetail extends CaseStudyPageSummary {
body: StreamFieldBlock[];
}
export interface SolutionPageSummary extends WagtailPageSummary {
industry?: string;
summary?: string;
}
export interface SolutionPageDetail extends SolutionPageSummary {
body: StreamFieldBlock[];
}