框架整理完毕

This commit is contained in:
2025-07-08 15:12:54 +08:00
parent da00ee707a
commit 38f67616fc
9 changed files with 316 additions and 30 deletions

View File

@@ -1,3 +0,0 @@
export default definePageConfig({
navigationBarTitleText: 'AI问答'
})

View File

@@ -1,24 +0,0 @@
import {useEffect} from "react";
import TabBar from "@/components/TabBar";
/**
* 文章终极列表
* @constructor
*/
const Study = () => {
const reload = async () => {
}
useEffect(() => {
reload().then(() => {
console.log('初始化完成')
})
}, [])
return (
<>
<TabBar/>
</>
)
}
export default Study