- 在反馈列表中新增用户的用户名和头像字段 - 更新后端接口以支持根据智能体ID过滤反馈记录 - 前端实现反馈详情模态框,提升用户交互体验 - 优化反馈数据的查询逻辑,确保隐私合规性
928 lines
20 KiB
Vue
928 lines
20 KiB
Vue
<template>
|
||
<div class="agent-view">
|
||
<div class="agent-view-header">
|
||
<div class="header-left">
|
||
<div class="header-item">
|
||
<span class="brandname">{{ infoStore.branding?.title }}</span>
|
||
</div>
|
||
</div>
|
||
<div class="header-center">
|
||
</div>
|
||
<div class="header-right">
|
||
<div class="header-item">
|
||
<a-button class="header-button" @click="openAgentModal">
|
||
<Bot size="18" stroke-width="1.75" />
|
||
切换智能体
|
||
</a-button>
|
||
</div>
|
||
<div class="header-item">
|
||
<a-button class="header-button" @click="toggleConf" :icon="h(SettingOutlined)"> 配置 </a-button>
|
||
</div>
|
||
<div class="header-item" v-if="selectedAgentId">
|
||
<a-button class="header-button" @click="feedbackModal.show()">
|
||
<template #icon><MessageOutlined /></template>
|
||
反馈详情
|
||
</a-button>
|
||
</div>
|
||
<div class="header-item">
|
||
<a-button
|
||
class="header-button"
|
||
@click="goToAgentPage"
|
||
v-if="selectedAgentId"
|
||
>
|
||
<template #icon><LinkOutlined /></template>
|
||
独立页面
|
||
</a-button>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="agent-view-body">
|
||
<!-- 智能体选择弹窗 -->
|
||
<a-modal
|
||
v-model:open="state.agentModalOpen"
|
||
title="选择智能体"
|
||
:width="800"
|
||
:footer="null"
|
||
:maskClosable="true"
|
||
class="agent-modal"
|
||
>
|
||
<div class="agent-modal-content">
|
||
<div class="agents-grid">
|
||
<div
|
||
v-for="(agent, id) in agents"
|
||
:key="id"
|
||
class="agent-card"
|
||
:class="{ 'selected': id === selectedAgentId }"
|
||
@click="selectAgentFromModal(id)"
|
||
>
|
||
<div class="agent-card-header">
|
||
<div class="agent-card-title">
|
||
<span class="agent-card-name">{{ agent.name }}</span>
|
||
<StarFilled v-if="id === defaultAgentId" class="default-icon" />
|
||
<StarOutlined v-else @click.prevent="setAsDefaultAgent(id)" class="default-icon" />
|
||
</div>
|
||
</div>
|
||
<div class="agent-card-description">{{ agent.description }}</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</a-modal>
|
||
|
||
<!-- 中间内容区域 -->
|
||
<div class="content">
|
||
<AgentChatComponent
|
||
:state="state"
|
||
:single-mode="false"
|
||
@open-config="toggleConf"
|
||
@open-agent-modal="openAgentModal"
|
||
@close-config-sidebar="() => state.isConfigSidebarOpen = false"
|
||
>
|
||
</AgentChatComponent>
|
||
</div>
|
||
|
||
<!-- 配置侧边栏 -->
|
||
<AgentConfigSidebar
|
||
:isOpen="state.isConfigSidebarOpen"
|
||
@close="() => state.isConfigSidebarOpen = false"
|
||
/>
|
||
|
||
<!-- 反馈模态框 -->
|
||
<FeedbackModalComponent ref="feedbackModal" :agent-id="selectedAgentId" />
|
||
</div>
|
||
</div>
|
||
</template>
|
||
|
||
<script setup>
|
||
import { ref, onMounted, reactive, watch, computed, h } from 'vue';
|
||
import { useRouter } from 'vue-router';
|
||
import {
|
||
SettingOutlined,
|
||
LinkOutlined,
|
||
StarOutlined,
|
||
StarFilled,
|
||
MessageOutlined,
|
||
} from '@ant-design/icons-vue';
|
||
import { message } from 'ant-design-vue';
|
||
import { Bot } from 'lucide-vue-next';
|
||
import AgentChatComponent from '@/components/AgentChatComponent.vue';
|
||
import AgentConfigSidebar from '@/components/AgentConfigSidebar.vue';
|
||
import FeedbackModalComponent from '@/components/dashboard/FeedbackModalComponent.vue';
|
||
import { useUserStore } from '@/stores/user';
|
||
import { useAgentStore } from '@/stores/agent';
|
||
import { useInfoStore } from '@/stores/info';
|
||
|
||
import { storeToRefs } from 'pinia';
|
||
|
||
// 组件引用
|
||
const feedbackModal = ref(null)
|
||
const userStore = useUserStore();
|
||
const agentStore = useAgentStore();
|
||
const infoStore = useInfoStore();
|
||
|
||
// 从store中获取响应式状态
|
||
const {
|
||
agents,
|
||
selectedAgentId,
|
||
defaultAgentId,
|
||
agentConfig,
|
||
selectedAgent,
|
||
configurableItems,
|
||
} = storeToRefs(agentStore);
|
||
const state = reactive({
|
||
agentModalOpen: false,
|
||
isConfigSidebarOpen: false,
|
||
isEmptyConfig: computed(() =>
|
||
!selectedAgentId.value ||
|
||
Object.keys(configurableItems.value || {}).length === 0
|
||
)
|
||
});
|
||
|
||
|
||
|
||
// 本地状态(仅UI相关)
|
||
|
||
// 设置为默认智能体
|
||
const setAsDefaultAgent = async (agentId) => {
|
||
if (!agentId || !userStore.isAdmin) return;
|
||
|
||
try {
|
||
await agentStore.setDefaultAgent(agentId);
|
||
message.success('已将当前智能体设为默认');
|
||
} catch (error) {
|
||
console.error('设置默认智能体错误:', error);
|
||
message.error(error.message || '设置默认智能体时发生错误');
|
||
}
|
||
};
|
||
|
||
|
||
|
||
|
||
|
||
// 这些方法现在由agentStore处理,无需在组件中定义
|
||
|
||
// 加载智能体配置(使用store方法)
|
||
const loadAgentConfig = async () => {
|
||
try {
|
||
await agentStore.loadAgentConfig();
|
||
} catch (error) {
|
||
console.error('加载配置出错:', error);
|
||
message.error('加载配置失败');
|
||
}
|
||
};
|
||
|
||
const handleModelChange = (data) => {
|
||
agentConfig.value.model = `${data.provider}/${data.name}`;
|
||
}
|
||
|
||
|
||
// 监听智能体选择变化
|
||
watch(
|
||
() => selectedAgentId.value,
|
||
() => {
|
||
loadAgentConfig();
|
||
}
|
||
);
|
||
|
||
// 选择智能体(使用store方法)
|
||
const selectAgent = (agentId) => {
|
||
agentStore.selectAgent(agentId);
|
||
// 加载该智能体的配置
|
||
loadAgentConfig();
|
||
};
|
||
|
||
// 打开智能体选择弹窗
|
||
const openAgentModal = () => {
|
||
state.agentModalOpen = true;
|
||
};
|
||
|
||
// 从弹窗中选择智能体
|
||
const selectAgentFromModal = (agentId) => {
|
||
selectAgent(agentId);
|
||
state.agentModalOpen = false;
|
||
};
|
||
|
||
|
||
|
||
|
||
|
||
// 获取配置标签
|
||
const getConfigLabel = (key, value) => {
|
||
// 根据配置项属性选择合适的显示文本
|
||
if (value.description && value.name !== key) {
|
||
return `${value.name}(${key})`;
|
||
}
|
||
return key;
|
||
};
|
||
|
||
// 获取占位符
|
||
const getPlaceholder = (key, value) => {
|
||
// 返回描述作为占位符
|
||
return `(默认: ${value.default})` ;
|
||
};
|
||
|
||
// 跳转到独立智能体页面
|
||
const goToAgentPage = () => {
|
||
if (selectedAgentId.value) {
|
||
window.open(`/agent/${selectedAgentId.value}`, '_blank');
|
||
}
|
||
};
|
||
|
||
const toggleConf = () => {
|
||
state.isConfigSidebarOpen = !state.isConfigSidebarOpen
|
||
}
|
||
</script>
|
||
|
||
<style lang="less" scoped>
|
||
.agent-view {
|
||
display: flex;
|
||
flex-direction: column;
|
||
width: 100%;
|
||
height: 100vh;
|
||
overflow: hidden;
|
||
--agent-view-header-height: 54px;
|
||
}
|
||
|
||
.agent-view-header {
|
||
height: var(--agent-view-header-height);
|
||
background-color: var(--bg-sider);
|
||
border-bottom: 1px solid var(--gray-100);
|
||
display: flex;
|
||
justify-content: space-between;
|
||
align-items: center;
|
||
padding: 2px 16px;
|
||
|
||
.header-left,
|
||
.header-right,
|
||
.header-center {
|
||
display: flex;
|
||
flex-direction: row;
|
||
gap: 10px;
|
||
}
|
||
|
||
.header-item {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 10px;
|
||
|
||
span.brandname {
|
||
font-size: 18px;
|
||
font-weight: 600;
|
||
color: var(--text-primary);
|
||
margin-right: 16px;
|
||
}
|
||
|
||
button.header-button {
|
||
border-radius: 6px;
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 6px;
|
||
border-color: var(--gray-100);
|
||
}
|
||
}
|
||
}
|
||
|
||
.agent-view-body {
|
||
--gap-radius: 6px;
|
||
display: flex;
|
||
flex-direction: row;
|
||
width: 100%;
|
||
flex: 1;
|
||
min-height: calc(100% - var(--agent-view-header-height));
|
||
overflow: hidden;
|
||
position: relative;
|
||
// padding: var(--gap-radius);
|
||
// gap: var(--gap-radius);
|
||
|
||
.content {
|
||
flex: 1;
|
||
display: flex;
|
||
flex-direction: column;
|
||
}
|
||
|
||
.no-agent-selected {
|
||
flex: 1;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
background-color: var(--bg-content);
|
||
}
|
||
|
||
.no-agent-content {
|
||
text-align: center;
|
||
color: var(--text-secondary);
|
||
|
||
svg {
|
||
margin-bottom: 16px;
|
||
opacity: 0.6;
|
||
}
|
||
|
||
h3 {
|
||
margin-bottom: 16px;
|
||
color: var(--text-primary);
|
||
}
|
||
}
|
||
|
||
// .content {
|
||
// border-radius: var(--gap-radius);
|
||
// border: 1px solid var(--gray-300);
|
||
// }
|
||
}
|
||
|
||
.content {
|
||
flex: 1;
|
||
overflow: hidden;
|
||
}
|
||
|
||
// 配置弹窗内容样式
|
||
.conf-content {
|
||
max-height: 70vh;
|
||
overflow-y: auto;
|
||
|
||
.agent-info {
|
||
padding: 0;
|
||
width: 100%;
|
||
overflow-y: visible;
|
||
max-height: none;
|
||
}
|
||
}
|
||
|
||
|
||
|
||
.agent-model {
|
||
width: 100%;
|
||
}
|
||
|
||
.config-modal-content {
|
||
user-select: text;
|
||
|
||
div[role="alert"] {
|
||
margin-bottom: 10px;
|
||
}
|
||
|
||
.description {
|
||
font-size: 12px;
|
||
color: var(--gray-700);
|
||
}
|
||
|
||
.form-actions {
|
||
display: flex;
|
||
justify-content: space-between;
|
||
margin-top: 20px;
|
||
gap: 10px;
|
||
|
||
.form-actions-left,
|
||
.form-actions-right {
|
||
display: flex;
|
||
gap: 10px;
|
||
}
|
||
}
|
||
}
|
||
|
||
// 添加新按钮的样式
|
||
.agent-action-buttons {
|
||
margin-top: 16px;
|
||
display: flex;
|
||
flex-direction: column;
|
||
gap: 8px;
|
||
}
|
||
|
||
.action-button {
|
||
background-color: white;
|
||
border: 1px solid var(--main-20);
|
||
text-align: left;
|
||
height: auto;
|
||
padding: 8px 12px;
|
||
|
||
&:hover {
|
||
background-color: var(--main-20);
|
||
}
|
||
|
||
&.primary-action {
|
||
color: var(--main-color);
|
||
border-color: var(--main-color);
|
||
|
||
&:disabled {
|
||
color: var(--main-color);
|
||
background-color: var(--main-20);
|
||
cursor: not-allowed;
|
||
opacity: 0.7;
|
||
}
|
||
}
|
||
|
||
.anticon {
|
||
margin-right: 8px;
|
||
}
|
||
}
|
||
|
||
.agent-option {
|
||
display: flex;
|
||
justify-content: space-between;
|
||
align-items: flex-start;
|
||
.agent-option-content {
|
||
display: flex;
|
||
flex-direction: column;
|
||
gap: 2px;
|
||
|
||
p {
|
||
margin: 0;
|
||
}
|
||
|
||
.agent-option-description {
|
||
font-size: 12px;
|
||
color: var(--gray-700);
|
||
word-break: break-word;
|
||
white-space: pre-wrap;
|
||
}
|
||
}
|
||
|
||
.default-icon {
|
||
color: #faad14;
|
||
font-size: 14px;
|
||
margin-left: 4px;
|
||
}
|
||
}
|
||
// 工具选择器样式(与项目风格一致)
|
||
.tools-selector {
|
||
.tools-summary {
|
||
display: flex;
|
||
justify-content: space-between;
|
||
align-items: center;
|
||
// margin-bottom: 8px;
|
||
padding: 8px 12px;
|
||
background: var(--gray-50);
|
||
border-radius: 8px;
|
||
border: 1px solid var(--gray-200);
|
||
font-size: 14px;
|
||
color: var(--gray-700);
|
||
transition: border-color 0.2s ease;
|
||
|
||
.tools-summary-left {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 8px;
|
||
|
||
.tools-count {
|
||
color: var(--gray-900);
|
||
}
|
||
}
|
||
|
||
.select-tools-btn {
|
||
background: var(--main-color);
|
||
border: none;
|
||
color: #fff;
|
||
border-radius: 6px;
|
||
padding: 4px 12px;
|
||
font-size: 13px;
|
||
font-weight: 500;
|
||
height: 28px;
|
||
transition: all 0.2s ease;
|
||
|
||
&:hover {
|
||
background: var(--main-color);
|
||
transform: translateY(-1px);
|
||
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
|
||
}
|
||
|
||
&:active {
|
||
transform: translateY(0);
|
||
}
|
||
}
|
||
}
|
||
|
||
.selected-tools-preview {
|
||
display: flex;
|
||
flex-wrap: wrap;
|
||
gap: 6px;
|
||
padding: 8px 0;
|
||
background: none;
|
||
border: none;
|
||
min-height: 32px;
|
||
:deep(.ant-tag) {
|
||
margin: 0;
|
||
padding: 4px 10px;
|
||
border-radius: 6px;
|
||
background: var(--gray-100);
|
||
border: 1px solid var(--gray-300);
|
||
color: var(--gray-900);
|
||
font-size: 13px;
|
||
font-weight: 400;
|
||
.anticon-close {
|
||
color: var(--gray-600);
|
||
margin-left: 4px;
|
||
&:hover {
|
||
color: var(--gray-900);
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
// 工具选择弹窗样式(与项目风格一致)
|
||
.tools-modal {
|
||
:deep(.ant-modal-content) {
|
||
border-radius: 8px;
|
||
box-shadow: 0 4px 24px rgba(0,0,0,0.08);
|
||
overflow: hidden;
|
||
}
|
||
:deep(.ant-modal-header) {
|
||
background: #fff;
|
||
border-bottom: 1px solid var(--gray-200);
|
||
padding: 16px 20px;
|
||
.ant-modal-title {
|
||
font-size: 16px;
|
||
font-weight: 600;
|
||
color: var(--gray-900);
|
||
}
|
||
}
|
||
:deep(.ant-modal-body) {
|
||
padding: 20px;
|
||
background: #fff;
|
||
}
|
||
.tools-modal-content {
|
||
.tools-search {
|
||
margin-bottom: 16px;
|
||
:deep(.ant-input) {
|
||
border-radius: 8px;
|
||
border: 1px solid var(--gray-300);
|
||
padding: 8px 12px;
|
||
font-size: 14px;
|
||
&:focus {
|
||
border-color: var(--main-color);
|
||
box-shadow: none;
|
||
}
|
||
}
|
||
}
|
||
.tools-list {
|
||
max-height: 350px;
|
||
overflow-y: auto;
|
||
border: 1px solid var(--gray-200);
|
||
border-radius: 8px;
|
||
margin-bottom: 16px;
|
||
background: #fff;
|
||
.tool-item {
|
||
padding: 14px 16px;
|
||
border-bottom: 1px solid var(--gray-100);
|
||
cursor: pointer;
|
||
transition: background 0.2s, border 0.2s;
|
||
border-left: 3px solid transparent;
|
||
&:last-child { border-bottom: none; }
|
||
&:hover {
|
||
background: var(--gray-50);
|
||
}
|
||
&.selected {
|
||
background: var(--main-10);
|
||
border-left: 3px solid var(--main-color);
|
||
}
|
||
.tool-content {
|
||
.tool-header {
|
||
display: flex;
|
||
justify-content: space-between;
|
||
align-items: center;
|
||
margin-bottom: 6px;
|
||
.tool-name {
|
||
font-weight: 500;
|
||
color: var(--gray-900);
|
||
font-size: 14px;
|
||
}
|
||
.tool-indicator { display: none; }
|
||
}
|
||
.tool-description {
|
||
font-size: 13px;
|
||
color: var(--gray-700);
|
||
margin-bottom: 6px;
|
||
line-height: 1.5;
|
||
display: -webkit-box;
|
||
-webkit-line-clamp: 2;
|
||
-webkit-box-orient: vertical;
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
}
|
||
|
||
}
|
||
}
|
||
}
|
||
.tools-modal-footer {
|
||
display: flex;
|
||
justify-content: space-between;
|
||
align-items: center;
|
||
padding: 12px 0 0 0;
|
||
border-top: 1px solid var(--gray-200);
|
||
.selected-count {
|
||
font-size: 13px;
|
||
color: var(--gray-700);
|
||
background: none;
|
||
padding: 0;
|
||
border: none;
|
||
}
|
||
.modal-actions {
|
||
display: flex;
|
||
gap: 10px;
|
||
:deep(.ant-btn) {
|
||
border-radius: 8px;
|
||
font-weight: 500;
|
||
padding: 6px 18px;
|
||
height: 36px;
|
||
font-size: 14px;
|
||
&.ant-btn-default {
|
||
border: 1px solid var(--gray-300);
|
||
color: var(--gray-900);
|
||
background: #fff;
|
||
&:hover {
|
||
border-color: var(--main-color);
|
||
color: var(--main-color);
|
||
background: var(--main-10);
|
||
}
|
||
}
|
||
&.ant-btn-primary {
|
||
background: var(--main-color);
|
||
border: none;
|
||
color: #fff;
|
||
&:hover {
|
||
background: var(--main-color);
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
// 多选卡片样式
|
||
.multi-select-cards {
|
||
.multi-select-label {
|
||
display: flex;
|
||
justify-content: space-between;
|
||
align-items: center;
|
||
margin-bottom: 12px;
|
||
font-size: 12px;
|
||
color: var(--gray-600);
|
||
height: 24px;
|
||
}
|
||
|
||
.options-grid {
|
||
display: grid;
|
||
grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
|
||
gap: 8px;
|
||
}
|
||
|
||
.option-card {
|
||
border: 1px solid var(--gray-300);
|
||
border-radius: 8px;
|
||
padding: 8px 12px;
|
||
cursor: pointer;
|
||
transition: all 0.2s ease;
|
||
background: white;
|
||
user-select: none;
|
||
|
||
&:hover {
|
||
border-color: var(--main-color);
|
||
}
|
||
|
||
&.selected {
|
||
border-color: var(--main-color);
|
||
background: var(--main-10);
|
||
|
||
.option-indicator {
|
||
color: var(--main-color);
|
||
}
|
||
|
||
.option-text {
|
||
color: var(--main-color);
|
||
font-weight: 500;
|
||
}
|
||
}
|
||
|
||
&.unselected {
|
||
.option-indicator {
|
||
color: var(--gray-400);
|
||
}
|
||
|
||
.option-text {
|
||
color: var(--gray-700);
|
||
}
|
||
}
|
||
|
||
.option-content {
|
||
display: flex;
|
||
justify-content: space-between;
|
||
align-items: center;
|
||
gap: 8px;
|
||
}
|
||
|
||
.option-text {
|
||
flex: 1;
|
||
font-size: 14px;
|
||
line-height: 1.4;
|
||
word-break: break-word;
|
||
}
|
||
|
||
.option-indicator {
|
||
flex-shrink: 0;
|
||
font-size: 16px;
|
||
transition: color 0.2s ease;
|
||
}
|
||
}
|
||
}
|
||
|
||
// 响应式适配
|
||
@media (max-width: 768px) {
|
||
.multi-select-cards {
|
||
.options-grid {
|
||
grid-template-columns: 1fr;
|
||
}
|
||
}
|
||
|
||
.conf-content {
|
||
max-height: 60vh;
|
||
}
|
||
}
|
||
|
||
// 智能体选择器样式
|
||
.agent-selector {
|
||
border: 1px solid var(--gray-300);
|
||
border-radius: 8px;
|
||
padding: 8px 12px;
|
||
background: white;
|
||
transition: border-color 0.2s ease;
|
||
|
||
&:hover {
|
||
border-color: var(--main-color);
|
||
}
|
||
|
||
.selected-agent-display {
|
||
display: flex;
|
||
justify-content: space-between;
|
||
align-items: center;
|
||
|
||
.agent-name {
|
||
font-size: 14px;
|
||
color: var(--gray-900);
|
||
font-weight: 500;
|
||
}
|
||
|
||
.default-icon {
|
||
color: #faad14;
|
||
font-size: 14px;
|
||
}
|
||
}
|
||
}
|
||
|
||
// 智能体选择弹窗样式
|
||
.agent-modal {
|
||
:deep(.ant-modal-content) {
|
||
border-radius: 8px;
|
||
overflow: hidden;
|
||
}
|
||
|
||
:deep(.ant-modal-header) {
|
||
background: #fff;
|
||
border-bottom: 1px solid var(--gray-200);
|
||
padding: 16px 20px;
|
||
|
||
.ant-modal-title {
|
||
font-size: 16px;
|
||
font-weight: 600;
|
||
color: var(--gray-900);
|
||
}
|
||
}
|
||
|
||
:deep(.ant-modal-body) {
|
||
padding: 20px;
|
||
background: #fff;
|
||
}
|
||
|
||
.agent-modal-content {
|
||
.agents-grid {
|
||
display: grid;
|
||
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
|
||
gap: 12px;
|
||
max-height: 500px;
|
||
overflow-y: auto;
|
||
}
|
||
|
||
.agent-card {
|
||
border: 1px solid var(--gray-200);
|
||
border-radius: 8px;
|
||
padding: 16px;
|
||
cursor: pointer;
|
||
transition: border-color 0.2s ease;
|
||
background: white;
|
||
|
||
&:hover {
|
||
border-color: var(--main-color);
|
||
}
|
||
|
||
.agent-card-header {
|
||
display: flex;
|
||
justify-content: space-between;
|
||
align-items: flex-start;
|
||
margin-bottom: 12px;
|
||
|
||
.agent-card-title {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 8px;
|
||
flex: 1;
|
||
|
||
.agent-card-name {
|
||
font-size: 16px;
|
||
font-weight: 600;
|
||
color: var(--gray-900);
|
||
line-height: 1.4;
|
||
}
|
||
|
||
.default-icon {
|
||
color: #faad14;
|
||
font-size: 16px;
|
||
flex-shrink: 0;
|
||
}
|
||
}
|
||
}
|
||
|
||
.agent-card-description {
|
||
font-size: 14px;
|
||
color: var(--gray-700);
|
||
line-height: 1.5;
|
||
display: -webkit-box;
|
||
-webkit-line-clamp: 3;
|
||
-webkit-box-orient: vertical;
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
}
|
||
|
||
|
||
&.selected {
|
||
border-color: var(--main-color);
|
||
background: var(--main-20);
|
||
// outline: 2px solid var(--main-color);
|
||
|
||
.agent-card-header .agent-card-title .agent-card-name {
|
||
color: var(--main-color);
|
||
}
|
||
|
||
.agent-card-description {
|
||
color: var(--gray-900);
|
||
}
|
||
}
|
||
|
||
}
|
||
}
|
||
}
|
||
|
||
// 响应式适配智能体弹窗
|
||
@media (max-width: 768px) {
|
||
.agent-modal {
|
||
.agent-modal-content {
|
||
.agents-grid {
|
||
grid-template-columns: 1fr;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
</style>
|
||
|
||
|
||
<style lang="less">
|
||
.toggle-conf {
|
||
cursor: pointer;
|
||
|
||
&.nav-btn {
|
||
height: 2.5rem;
|
||
display: flex;
|
||
justify-content: center;
|
||
align-items: center;
|
||
border-radius: 8px;
|
||
color: var(--gray-900);
|
||
cursor: pointer;
|
||
font-size: 15px;
|
||
width: auto;
|
||
padding: 0.5rem 1rem;
|
||
transition: background-color 0.3s;
|
||
overflow: hidden;
|
||
|
||
.text {
|
||
margin-left: 10px;
|
||
}
|
||
|
||
&:hover {
|
||
background-color: var(--main-20);
|
||
}
|
||
|
||
.nav-btn-icon {
|
||
width: 1.5rem;
|
||
height: 1.5rem;
|
||
}
|
||
}
|
||
}
|
||
|
||
|
||
// 针对 Ant Design Select 组件的深度样式修复
|
||
:deep(.ant-select-item-option-content) {
|
||
.agent-option-name {
|
||
color: var(--main-color);
|
||
font-size: 14px;
|
||
font-weight: 500;
|
||
}
|
||
}
|
||
</style> |