no message
This commit is contained in:
parent
7f99a7049a
commit
0dc2d20fe5
@ -5,7 +5,7 @@ services:
|
|||||||
build:
|
build:
|
||||||
context: .
|
context: .
|
||||||
dockerfile: Dockerfile
|
dockerfile: Dockerfile
|
||||||
image: tradus-web:1.3.26
|
image: tradus-web:1.3.27
|
||||||
container_name: tradus-web
|
container_name: tradus-web
|
||||||
ports:
|
ports:
|
||||||
- '6000:80'
|
- '6000:80'
|
||||||
|
|||||||
17
src/App.vue
17
src/App.vue
@ -552,6 +552,23 @@ onUnmounted(() => {
|
|||||||
</svg>
|
</svg>
|
||||||
<span class="agent-name">分析历史</span>
|
<span class="agent-name">分析历史</span>
|
||||||
</RouterLink>
|
</RouterLink>
|
||||||
|
<RouterLink
|
||||||
|
to="/ai-agent"
|
||||||
|
class="agent-item"
|
||||||
|
@click="showMobileMenu = false"
|
||||||
|
v-if="isAuthenticated"
|
||||||
|
>
|
||||||
|
<svg
|
||||||
|
class="agent-icon"
|
||||||
|
viewBox="0 0 24 24"
|
||||||
|
fill="none"
|
||||||
|
stroke="currentColor"
|
||||||
|
stroke-width="2"
|
||||||
|
>
|
||||||
|
<path d="M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z"></path>
|
||||||
|
</svg>
|
||||||
|
<span class="agent-name">AI 交易智能体</span>
|
||||||
|
</RouterLink>
|
||||||
<RouterLink to="/contact" class="agent-item" @click="showMobileMenu = false">
|
<RouterLink to="/contact" class="agent-item" @click="showMobileMenu = false">
|
||||||
<svg
|
<svg
|
||||||
class="agent-icon"
|
class="agent-icon"
|
||||||
|
|||||||
@ -54,6 +54,15 @@ const router = createRouter({
|
|||||||
title: '分析历史记录',
|
title: '分析历史记录',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
path: '/ai-agent',
|
||||||
|
name: 'ai-agent',
|
||||||
|
component: () => import('../views/ChatAgentView.vue'),
|
||||||
|
meta: {
|
||||||
|
requiresAuth: true,
|
||||||
|
title: 'AI 交易智能体',
|
||||||
|
},
|
||||||
|
},
|
||||||
{
|
{
|
||||||
path: '/contact',
|
path: '/contact',
|
||||||
name: 'contact',
|
name: 'contact',
|
||||||
|
|||||||
1120
src/views/ChatAgentView.vue
Normal file
1120
src/views/ChatAgentView.vue
Normal file
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user