完成AI问答模块

This commit is contained in:
2025-07-08 21:42:38 +08:00
parent 38f67616fc
commit 9f8f113e43
35 changed files with 1563 additions and 146 deletions

View File

@@ -46,12 +46,12 @@ const Index = () => {
}, [])
return (
<>
<div className={'bg-red-200 h-full'}>
<div style={{padding: navigation?.span + 'px'}}>
<Image src={navigation?.style} width={'100%'}
height={'auto'}/>
</div>
<div className={'bg-white rounded-lg py-3 px-3'}>
<div className={'py-3 px-3'}>
<div className={'grid grid-cols-2 gap-3'}>
{
// 子级栏目
@@ -99,7 +99,7 @@ const Index = () => {
}
</div>
</div>
</>
</div>
)
}
export default Index