diff --git a/backend/package/yuxi/config/static/info.template.yaml b/backend/package/yuxi/config/static/info.template.yaml index 191a945b..65665e01 100644 --- a/backend/package/yuxi/config/static/info.template.yaml +++ b/backend/package/yuxi/config/static/info.template.yaml @@ -20,40 +20,6 @@ branding: - "让智能体可落地,让流程可编排,让协作可扩展" - "让数据可沉淀,让能力可复用,让系统可进化" -features: - - label: "GitHub Stars" - value: "4800+" - description: "开发者社区的认可与支持" - icon: "stars" - - label: "已解决 Issues" - value: "300+" - description: "持续改进和问题解决能力" - icon: "issues" - - label: "累计 Commits" - value: "1600+" - description: "活跃的开发迭代和功能更新" - icon: "commits" - - label: "开源协议" - value: "MIT License" - description: "完全免费,支持商业使用" - icon: "license" - -actions: - - name: "演示视频" - icon: "video" - url: "https://www.bilibili.com/video/BV1DF14BTETq" - - name: "文档中心" - icon: "docs" - url: "https://xerrors.github.io/Yuxi/" - - name: "提交 Issue" - icon: "issue" - url: "https://github.com/xerrors/Yuxi/issues/new/choose" - - name: "开发路线图" - icon: "roadmap" - url: "https://xerrors.github.io/Yuxi/develop-guides/roadmap.html" - - - # 页脚信息 footer: copyright: "© 江南语析 2026 v{{YUXI_VERSION}}" diff --git a/web/src/stores/info.js b/web/src/stores/info.js index df048ab3..c8c6df0d 100644 --- a/web/src/stores/info.js +++ b/web/src/stores/info.js @@ -30,11 +30,6 @@ export const useInfoStore = defineStore('info', () => { } ) - // 计算属性 - 功能特性 - const features = computed(() => infoConfig.value.features || []) - - const actions = computed(() => infoConfig.value.actions || []) - // 计算属性 - 页脚信息 const footer = computed(() => ({ copyright: '', @@ -89,9 +84,7 @@ export const useInfoStore = defineStore('info', () => { // 计算属性 organization, branding, - features, footer, - actions, // 方法 toggleDebugMode, diff --git a/web/src/views/HomeView.vue b/web/src/views/HomeView.vue index 4714d8b3..c313d0b1 100644 --- a/web/src/views/HomeView.vue +++ b/web/src/views/HomeView.vue @@ -18,34 +18,47 @@