index.tsx 435 B

123456789101112131415
  1. import { View, Text, Image } from "@tarojs/components";
  2. import Taro, { useDidShow } from "@tarojs/taro";
  3. import NavBarNormal from "@/components/nav-bar-normal/index";
  4. import PageCustom from "@/components/page-custom/index";
  5. export default () => {
  6. return (
  7. <PageCustom>
  8. <NavBarNormal leftColumn={()=> <Text>我的</Text>}>
  9. </NavBarNormal>
  10. <View className="p-20">暂无数据</View>
  11. </PageCustom>
  12. );
  13. };