feat: 添加工具市场前端页面

- 新增 Tools.vue 页面:工具列表、分类筛选、搜索、新建/编辑/删除/测试
- 新增路由 /tools
- 导航菜单添加"工具市场"入口

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
renjianbo
2026-05-01 22:43:51 +08:00
parent 7b9e0826de
commit cd83090c61
3 changed files with 618 additions and 1 deletions

View File

@@ -112,6 +112,12 @@ const router = createRouter({
component: () => import('@/views/NodeTemplates.vue'),
meta: { requiresAuth: true }
},
{
path: '/tools',
name: 'tools',
component: () => import('@/views/Tools.vue'),
meta: { requiresAuth: true }
},
{
path: '/agent-chat',
name: 'agent-chat',