feat: 移除个人信息页面中的减脂计划显示

- 在个人信息页面中移除减脂计划的文本显示
- 更新样式,删除相关的样式定义
This commit is contained in:
2025-08-12 22:57:12 +08:00
parent 5f05abc3d5
commit e0e000b64f

View File

@@ -134,7 +134,6 @@ export default function PersonalScreen() {
{/* 用户信息 */} {/* 用户信息 */}
<View style={styles.userDetails}> <View style={styles.userDetails}>
<Text style={styles.userName}>{profile.fullName || '未设置姓名'}</Text> <Text style={styles.userName}>{profile.fullName || '未设置姓名'}</Text>
<Text style={styles.userProgram}></Text>
</View> </View>
{/* 编辑按钮 */} {/* 编辑按钮 */}
@@ -382,10 +381,6 @@ const styles = StyleSheet.create({
color: '#000', color: '#000',
marginBottom: 4, marginBottom: 4,
}, },
userProgram: {
fontSize: 14,
color: '#888',
},
// 统计信息区域 // 统计信息区域
statsContainer: { statsContainer: {