feat: 将/support/faq界面迁移至Directus

- 路由界面脚本修改
- 视图模型相关定义
This commit is contained in:
2025-10-18 16:24:45 +08:00
parent f53b86cbb6
commit 46e79f0b5c
6 changed files with 186 additions and 55 deletions

View File

@ -0,0 +1,14 @@
/**
* 常见问题视图模型
* 用于产品页常见问题渲染的数据结构
*/
export interface ProductQuestionView {
/** 唯一标识符 **/
id: number;
/** 问题标题 **/
title: string;
/** 问题内容 **/
content: string;
}