From c336be5cd756d2803f3966580c5bc21ba50ef170 Mon Sep 17 00:00:00 2001 From: zzlgreat Date: Fri, 21 Nov 2025 23:59:31 +0800 Subject: [PATCH] update pay function --- src/views/AgentChat/index.js | 34 +++++++++++++++++++++++++--------- 1 file changed, 25 insertions(+), 9 deletions(-) diff --git a/src/views/AgentChat/index.js b/src/views/AgentChat/index.js index 751760a4..fc752d7d 100644 --- a/src/views/AgentChat/index.js +++ b/src/views/AgentChat/index.js @@ -2,6 +2,7 @@ // Agent聊天页面 V4 - 黑金毛玻璃设计,带模型选择和工具选择 import React, { useState, useEffect, useRef } from 'react'; +import { Global, css } from '@emotion/react'; import { Box, Flex, @@ -699,14 +700,28 @@ const AgentChatV4 = () => { ); return ( - + <> + {/* 全局样式:确保页面占满整个视口 */} + + ); };