feat: add guide route and message page and empty person page

This commit is contained in:
2025-08-26 19:29:34 +08:00
parent e51015b447
commit 924afbb3cf
18 changed files with 417 additions and 2 deletions

View File

@@ -12,11 +12,12 @@ import { useListStore } from "@/store/listStore";
import {useGlobalState} from '@/store/global'
import { View } from "@tarojs/components";
import CustomerNavBar from "@/components/CustomNavbar";
import GuideBar from "@/components/GuideBar";
const ListPage = () => {
// 从 store 获取数据和方法
const store = useListStore() || {};
const {statusNavbarHeightInfo } = useGlobalState() || {}
// console.log("===store===", store);
// console.log('===statusNavbarHeightInfo', statusNavbarHeightInfo)
@@ -241,6 +242,8 @@ const ListPage = () => {
})}
</View>
</View>
<GuideBar currentPage='list' />
</>
);
};