perf: 主agent样式调整

This commit is contained in:
rd
2025-09-09 15:59:31 +08:00
parent 4053aa176e
commit 1b13a0e72f
6 changed files with 42 additions and 30 deletions

View File

@ -76,7 +76,7 @@ export default {
}; };
const renderHeader = () => { const renderHeader = () => {
return ( return (
<header class="header flex justify-end items-center mb-16px px-32px"> <header class="header flex justify-end items-center mb-16px px-16px">
{hasMediaCenter.value && ( {hasMediaCenter.value && (
<Button <Button
type="outline" type="outline"
@ -175,7 +175,7 @@ export default {
return null; return null;
}; };
return ( return (
<section class="flex-1 overflow-y-auto content flex justify-center px-32px"> <section class="flex-1 overflow-y-auto content flex justify-center px-16px">
<Bubble <Bubble
ref={bubbleRef} ref={bubbleRef}
placement="start" placement="start"

View File

@ -84,7 +84,7 @@ export default {
}); });
return () => ( return () => (
<div class="sender-input-wrap full h-120px"> <section class="sender-input-wrap full h-120px">
<Sender <Sender
v-model:value={localSearchValue.value} v-model:value={localSearchValue.value}
ref={senderRef} ref={senderRef}
@ -94,7 +94,7 @@ export default {
placeholder={props.placeholder} placeholder={props.placeholder}
actions={() => renderActions()} actions={() => renderActions()}
/> />
</div> </section>
); );
}, },
}; };

View File

@ -34,8 +34,7 @@ export const REMOTE_USER_ROLE = 'user'; // 接口返回用户
export const REMOTE_ASSISTANT_ROLE = 'assistant'; // 接口返回智能体 export const REMOTE_ASSISTANT_ROLE = 'assistant'; // 接口返回智能体
export const ROLE_STYLE = { export const ROLE_STYLE = {
width: '600px', width: 'var(--max-content-width)',
margin: '0 auto',
}; };
export const ANSWER_STYLE = { export const ANSWER_STYLE = {

View File

@ -149,8 +149,8 @@ export default {
}); });
return () => ( return () => (
<div class="chat-view-wrap w-full h-full flex"> <div class={`chat-view-wrap w-full h-full flex ${showRightView.value ? 'show-right-view' : ''}`}>
<section class="flex-1 flex flex-col pt-20px justify-center relative pl-16px pr-2px"> <section class="flex-1 flex flex-col pt-20px justify-center relative bubble-wrap">
<div class="flex-1 overflow-hidden pb-20px"> <div class="flex-1 overflow-hidden pb-20px">
<BubbleList <BubbleList
ref={bubbleListRef} ref={bubbleListRef}
@ -165,7 +165,7 @@ export default {
<SenderInput <SenderInput
v-model={searchValue.value} v-model={searchValue.value}
ref={senderRef} ref={senderRef}
class="w-600px" style={{ 'width': 'var(--max-content-width)' }}
placeholder="继续追问..." placeholder="继续追问..."
loading={generateLoading.value} loading={generateLoading.value}
onSubmit={handleSubmit} onSubmit={handleSubmit}

View File

@ -1,4 +1,8 @@
$bubble-wrap-padding-left: 16px;
$bubble-wrap-padding-right: 2px;
.chat-view-wrap { .chat-view-wrap {
--max-content-width: 900px;
--max-question-width: 500px;
.cts { .cts {
color: var(--Text-1, #737478); color: var(--Text-1, #737478);
font-size: 14px; font-size: 14px;
@ -6,7 +10,14 @@
font-weight: 400; font-weight: 400;
line-height: 22px; line-height: 22px;
} }
:deep(.xt-bubble) { .bubble-wrap {
padding-left: $bubble-wrap-padding-left;
padding-right: $bubble-wrap-padding-right;
}
:deep(.xt-bubble-list) {
align-items: center;
padding-right: $bubble-wrap-padding-left - $bubble-wrap-padding-right;
.xt-bubble {
.file-card { .file-card {
border-radius: 12px; border-radius: 12px;
border: 1px solid var(--Border-2, #e6e6e8); border: 1px solid var(--Border-2, #e6e6e8);
@ -17,4 +28,9 @@
align-items: center; align-items: center;
} }
} }
}
&.show-right-view {
--max-content-width: 596px;
--max-question-width: 396px;
}
} }

View File

@ -86,9 +86,7 @@ export default function useChatHandler(options: UseChatHandlerOptions): UseChatH
shape: 'round', shape: 'round',
style: ROLE_STYLE, style: ROLE_STYLE,
messageRender: (message: string) => { messageRender: (message: string) => {
return <div class="max-w-400px"> return <div style={{ 'max-width': 'var(--max-question-width)' }}>{message}</div>;
{message}
</div>;
}, },
}, },
[REMOTE_USER_ROLE]: { [REMOTE_USER_ROLE]: {
@ -96,9 +94,7 @@ export default function useChatHandler(options: UseChatHandlerOptions): UseChatH
shape: 'round', shape: 'round',
style: ROLE_STYLE, style: ROLE_STYLE,
messageRender: (message: string) => { messageRender: (message: string) => {
return <div class="max-w-600px"> return <div style={{ 'max-width': 'var(--max-question-width)' }}>{message}</div>;
{message}
</div>;
}, },
}, },
[REMOTE_ASSISTANT_ROLE]: { [REMOTE_ASSISTANT_ROLE]: {
@ -106,14 +102,16 @@ export default function useChatHandler(options: UseChatHandlerOptions): UseChatH
variant: 'borderless', variant: 'borderless',
style: ROLE_STYLE, style: ROLE_STYLE,
messageRender: (message: string) => { messageRender: (message: string) => {
return <div class="max-w-600px markdown-wrap" v-html={md.render(message)} />; return (
<div class="markdown-wrap" style={{ 'max-width': 'var(--max-content-width)' }} v-html={md.render(message)} />
);
}, },
footer: (params) => { footer: (params) => {
const { content, item } = params as { content: string; item: MESSAGE.Answer }; const { content, item } = params as { content: string; item: MESSAGE.Answer };
const isShow = conversationList.value[conversationList.value.length - 1].run_id === item.run_id; const isShow = conversationList.value[conversationList.value.length - 1].run_id === item.run_id;
return ( return (
<div class="flex items-center"> <div class="flex items-center">
<Tooltip title="复制" onClick={() => onCopy(content)} align={{ offset: [0, 4] }} > <Tooltip title="复制" onClick={() => onCopy(content)} align={{ offset: [0, 4] }}>
<div class="action-box"> <div class="action-box">
<IconCopy size={16} class="color-#737478" /> <IconCopy size={16} class="color-#737478" />
</div> </div>
@ -318,7 +316,7 @@ export default function useChatHandler(options: UseChatHandlerOptions): UseChatH
// 含有思考过程,折叠思考过程,展示结果 // 含有思考过程,折叠思考过程,展示结果
if (_hasRunTask) { if (_hasRunTask) {
setRunTaskCollapse(teamRunTaskId, false); setRunTaskCollapse(teamRunTaskId, false);
const _targetData = extra_data?.data?.find((item: any) => item.task_type === '任务管理') const _targetData = extra_data?.data?.find((item: any) => item.task_type === '任务管理');
if (_targetData) { if (_targetData) {
showRightView.value = true; showRightView.value = true;
rightViewDataSource.value = extra_data.data; rightViewDataSource.value = extra_data.data;
@ -345,8 +343,7 @@ export default function useChatHandler(options: UseChatHandlerOptions): UseChatH
)} )}
</> </>
); );
} };
} else { } else {
_targetTask.content.teamRunStatus = EnumTeamRunStatus.TeamRunCompleted; _targetTask.content.teamRunStatus = EnumTeamRunStatus.TeamRunCompleted;
} }
@ -418,6 +415,6 @@ export default function useChatHandler(options: UseChatHandlerOptions): UseChatH
conversationList, conversationList,
showRightView, showRightView,
rightViewDataSource, rightViewDataSource,
rightPreviewData rightPreviewData,
}; };
} }