update pay function

This commit is contained in:
2025-11-21 23:41:33 +08:00
parent 22bb57b52f
commit b5a0b7094a

View File

@@ -699,8 +699,8 @@ const AgentChatV4 = () => {
); );
return ( return (
<Flex <Box
position="fixed" position="absolute"
top="0" top="0"
left="0" left="0"
right="0" right="0"
@@ -708,6 +708,13 @@ const AgentChatV4 = () => {
bg={darkBg} bg={darkBg}
overflow="hidden" overflow="hidden"
> >
<Flex
w="100%"
h="100%"
overflow="hidden"
position="relative"
flexDirection="row"
>
{/* 背景装饰 - 黄金光晕效果 */} {/* 背景装饰 - 黄金光晕效果 */}
<Box <Box
position="absolute" position="absolute"
@@ -1305,7 +1312,8 @@ const AgentChatV4 = () => {
</VStack> </VStack>
</Box> </Box>
</Collapse> </Collapse>
</Flex> </Flex>
</Box>
); );
}; };