diff --git a/.superpowers/brainstorm/team-building-20260819-visual/content/team-building-layout.html b/.superpowers/brainstorm/team-building-20260819-visual/content/team-building-layout.html new file mode 100644 index 0000000..be8d6fd --- /dev/null +++ b/.superpowers/brainstorm/team-building-20260819-visual/content/team-building-layout.html @@ -0,0 +1,52 @@ + + +
参考“野呀旅行”长文详情图,选择更适合团队共创内容的阅读结构
+ + diff --git a/.superpowers/brainstorm/team-building-20260819-visual/state/server-info b/.superpowers/brainstorm/team-building-20260819-visual/state/server-info new file mode 100644 index 0000000..496ad36 --- /dev/null +++ b/.superpowers/brainstorm/team-building-20260819-visual/state/server-info @@ -0,0 +1 @@ +{"type":"server-started","port":63862,"host":"0.0.0.0","url_host":"127.0.0.1","url":"http://127.0.0.1:63862","screen_dir":"D:\\www\\znkj\\WonderQ-Project\\.superpowers\\brainstorm\\team-building-20260819-visual\\content","state_dir":"D:\\www\\znkj\\WonderQ-Project\\.superpowers\\brainstorm\\team-building-20260819-visual\\state"} diff --git a/WonderQ-Admin-UI/src/api.ts b/WonderQ-Admin-UI/src/api.ts index 6127ed6..ab49cd5 100644 --- a/WonderQ-Admin-UI/src/api.ts +++ b/WonderQ-Admin-UI/src/api.ts @@ -86,6 +86,151 @@ export type SiteModule = | "demandFeatureCards" | "demandForm" | "vehicleOptions"; + +export type WanfaRoute = { + id: string; + title: string; + subtitle: string; + image: string; + routeCount: number; + demandKeyword: string; +}; + +export type WanfaCategory = { + id: string; + label: string; + routes: WanfaRoute[]; +}; + +export type WanfaCategoryCreate = { + label: string; +}; + +export type WanfaCategoryPatch = { + label?: string; +}; + +export type WanfaRouteCreate = { + title: string; + subtitle: string; + image: string; + routeCount: number; + demandKeyword: string; +}; + +export type WanfaRoutePatch = Partial