feat: 模型数量增加。滚动条位置

This commit is contained in:
Archer
2023-03-18 00:53:00 +08:00
parent 38c093d9ae
commit 9384419c9d
2 changed files with 32 additions and 29 deletions

View File

@@ -43,8 +43,8 @@ export default async function handler(req: NextApiRequest, res: NextApiResponse<
const authCount = await Model.countDocuments({
userId
});
if (authCount >= 5) {
throw new Error('上限5个模型');
if (authCount >= 10) {
throw new Error('上限 10 个模型');
}
// 创建模型

View File

@@ -98,17 +98,18 @@ const SlideBar = ({
flexDirection={'column'}
w={'100%'}
h={'100%'}
p={3}
py={3}
backgroundColor={'blackAlpha.800'}
color={'white'}
>
{/* 新对话 */}
{getToken() && (
<Button
w={'100%'}
w={'90%'}
variant={'white'}
h={'40px'}
mb={4}
mx={'auto'}
leftIcon={<AddIcon />}
onClick={resetChat}
>
@@ -117,7 +118,7 @@ const SlideBar = ({
)}
{/* 我的模型 & 历史记录 折叠框*/}
<Box flex={'1 0 0'} h={0} overflowY={'auto'}>
<Box flex={'1 0 0'} px={3} h={0} overflowY={'auto'}>
{isSuccess ? (
<Accordion defaultIndex={[0]} allowToggle>
<AccordionItem borderTop={0} borderBottom={0}>
@@ -185,6 +186,7 @@ const SlideBar = ({
<Divider my={4} />
<Box px={3}>
{/* 分享 */}
{getToken() && (
<Flex
@@ -222,6 +224,7 @@ const SlideBar = ({
<MyIcon name="share" fill={'white'} w={'16px'} h={'16px'} mr={4} />
</Flex>
</Box>
</Flex>
);
};