diff --git a/app/(tabs)/personal.tsx b/app/(tabs)/personal.tsx
index 1c3e1cd..963c122 100644
--- a/app/(tabs)/personal.tsx
+++ b/app/(tabs)/personal.tsx
@@ -215,6 +215,14 @@ export default function PersonalScreen() {
{userProfile.memberNumber && (
会员编号: {userProfile.memberNumber}
)}
+ {userProfile.freeUsageCount !== undefined && (
+
+
+
+ 免费AI次数: {userProfile.isVip ? '无限' : userProfile.freeUsageCount}
+
+
+ )}
{isLgAvaliable ? (
pushIfAuthedElseLogin('/profile/edit')}>
@@ -501,6 +509,17 @@ const styles = StyleSheet.create({
color: '#6C757D',
marginTop: 4,
},
+ aiUsageContainer: {
+ flexDirection: 'row',
+ alignItems: 'center',
+ marginTop: 4,
+ },
+ aiUsageText: {
+ fontSize: 10,
+ color: '#9370DB',
+ marginLeft: 2,
+ fontWeight: '500',
+ },
editButton: {
backgroundColor: '#9370DB',
paddingHorizontal: 16,