添加 个人页bar

This commit is contained in:
张成
2025-09-02 11:26:40 +08:00
parent d93efa0c3c
commit 2f7984ea2b

View File

@@ -2,7 +2,7 @@ import React, { useState, useEffect } from 'react';
import { View, Text, Image, ScrollView, Button } from '@tarojs/components';
import Taro from '@tarojs/taro';
import './index.scss';
import GuideBar from '@/components/GuideBar'
// 用户信息接口
interface UserInfo {
id: string;
@@ -370,6 +370,7 @@ const MyselfPage: React.FC = () => {
</View>
</View>
</ScrollView>
<GuideBar currentPage='personal' />
</View>
);
};