ForcePilot/web/src/views/AgentSingleView.vue

124 lines
2.6 KiB
Vue
Raw Normal View History

2025-03-31 22:32:19 +08:00
<template>
2025-03-31 23:02:05 +08:00
<div class="agent-single-view">
2025-05-02 23:56:59 +08:00
<!-- 侧边栏 -->
<div class="sidebar" :class="{ 'collapsed': isSidebarCollapsed }">
<div class="sidebar-content">
<div class="user-icon">
<img :src="sidebarLeftIcon" alt="用户信息" @click="toggleUserInfo" />
2025-04-03 16:02:14 +08:00
</div>
2025-05-02 23:56:59 +08:00
<!-- 这里可以添加更多侧边栏内容 -->
<UserInfoComponent />
2025-04-03 16:02:14 +08:00
</div>
2025-05-02 23:56:59 +08:00
<div class="toggle-button" @click="toggleSidebar">
<img :src="isSidebarCollapsed ? sidebarRightIcon : sidebarLeftIcon" alt="折叠/展开" />
</div>
</div>
<!-- 用户信息组件 -->
<div class="user-info-wrapper">
<UserInfoComponent />
</div>
2025-04-03 16:02:14 +08:00
<!-- 智能体聊天界面 -->
2025-05-02 23:56:59 +08:00
<AgentChatComponent :agent-id="agentId" />
2025-03-31 22:32:19 +08:00
</div>
</template>
2025-03-31 23:02:05 +08:00
<script setup>
2025-05-02 23:56:59 +08:00
import { computed, ref } from 'vue';
import { useRoute } from 'vue-router';
2025-03-31 23:02:05 +08:00
import AgentChatComponent from '@/components/AgentChatComponent.vue';
2025-05-02 23:56:59 +08:00
import UserInfoComponent from '@/components/UserInfoComponent.vue';
import sidebarLeftIcon from '@/assets/icons/sidebar_left.svg';
import sidebarRightIcon from '@/assets/icons/sidebar_right.svg';
2025-03-31 23:02:05 +08:00
const route = useRoute();
const agentId = computed(() => route.params.agent_id);
2025-04-03 16:02:14 +08:00
2025-05-02 23:56:59 +08:00
// 侧边栏状态
const isSidebarCollapsed = ref(false);
2025-04-03 16:02:14 +08:00
2025-05-02 23:56:59 +08:00
// 切换侧边栏展开/折叠状态
const toggleSidebar = () => {
isSidebarCollapsed.value = !isSidebarCollapsed.value;
2025-04-03 16:02:14 +08:00
};
2025-05-02 23:56:59 +08:00
// 用户信息点击事件
const toggleUserInfo = () => {
// 此处可以添加用户信息相关的逻辑
console.log('用户信息图标被点击');
2025-04-03 16:02:14 +08:00
};
2025-03-31 23:02:05 +08:00
</script>
<style lang="less" scoped>
.agent-single-view {
width: 100%;
height: 100vh;
overflow: hidden;
2025-05-02 23:56:59 +08:00
position: relative;
2025-03-31 23:02:05 +08:00
}
2025-04-03 16:02:14 +08:00
2025-05-02 23:56:59 +08:00
.user-info-wrapper {
position: absolute;
top: 10px;
right: 20px;
z-index: 10;
}
// 侧边栏样式
.sidebar {
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 240px;
background-color: #f5f5f5;
transition: all 0.3s ease;
z-index: 20;
2025-04-03 16:02:14 +08:00
display: flex;
2025-05-02 23:56:59 +08:00
&.collapsed {
width: 60px;
}
.sidebar-content {
flex: 1;
padding: 20px 10px;
overflow-y: auto;
}
.user-icon {
cursor: pointer;
margin-bottom: 20px;
img {
width: 32px;
height: 32px;
}
2025-04-03 16:02:14 +08:00
}
2025-05-02 23:56:59 +08:00
.toggle-button {
position: absolute;
right: -15px;
top: 50%;
transform: translateY(-50%);
width: 30px;
height: 30px;
background-color: #fff;
border-radius: 50%;
2025-04-03 16:02:14 +08:00
display: flex;
2025-05-02 23:56:59 +08:00
align-items: center;
justify-content: center;
cursor: pointer;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
img {
width: 16px;
height: 16px;
}
2025-04-03 16:02:14 +08:00
}
}
2025-03-31 23:02:05 +08:00
</style>
2025-03-31 22:32:19 +08:00