123456789101112131415 |
- import { View, Text, Image } from "@tarojs/components";
- import Taro, { useDidShow } from "@tarojs/taro";
- import NavBarNormal from "@/components/nav-bar-normal/index";
- import PageCustom from "@/components/page-custom/index";
- export default () => {
-
- return (
- <PageCustom>
- <NavBarNormal leftColumn={()=> <Text>我的</Text>}>
- </NavBarNormal>
- <View className="p-20">暂无数据</View>
- </PageCustom>
- );
- };
|