This commit is contained in:
aaron 2025-05-26 16:37:25 +08:00
parent c8ff4ab869
commit 7f99a7049a
3 changed files with 18 additions and 11 deletions

View File

@ -5,7 +5,7 @@ services:
build:
context: .
dockerfile: Dockerfile
image: tradus-web:1.3.25
image: tradus-web:1.3.26
container_name: tradus-web
ports:
- '6000:80'

View File

@ -24,15 +24,15 @@ const agents = [
</svg>`,
route: '/analysis/stock',
},
{
id: 'usstock-analysis',
name: '美股股票分析智能体',
description: '获取美股上市公司的深度AI智能分析报告',
icon: `<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z"/>
</svg>`,
route: '/analysis/usstock',
},
// {
// id: 'usstock-analysis',
// name: '',
// description: 'AI',
// icon: `<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
// <path d="M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z"/>
// </svg>`,
// route: '/analysis/usstock',
// },
]
const navigateToAgent = (route: string) => {

View File

@ -39,7 +39,14 @@ const currentOffset = computed(() => (currentPage.value - 1) * limit.value)
//
const getTypeName = (type: string) => {
return type === 'astock' ? 'A股分析' : type === 'crypto' ? '加密货币分析' : type
if (type === 'astock') {
return 'A股分析'
} else if (type === 'crypto') {
return '加密货币分析'
} else if (type === 'usstock') {
return '美股分析'
}
return type
}
//