- {{ item.uperName }}
+ {{ item.uperName }}
{{item.douyinNo?`(${item.douyinNo})`:''}}
非关注
@@ -183,6 +183,7 @@ interface FollowItem {
isEditing: boolean;
isSaving?: boolean;
uperId?: string; // 原userId改为uperId
+ douyinNo?: string;
isNoFollowed: boolean; // 新增:是否为非关注博主
}
@@ -201,6 +202,7 @@ interface AddForm {
fullSync: boolean;
mySelfId: string;
uperId: string;
+ douyinNo: string;
}
// Tab列表数据
@@ -233,6 +235,7 @@ const addForm = ref
({
fullSync: false,
mySelfId: '',
uperId: '',
+ douyinNo: '',
});
// 表单校验规则
@@ -543,6 +546,7 @@ const handleAdd = () => {
fullSync: false,
secUid: '',
mySelfId: activeTabKey.value,
+ douyinNo: '',
};
// 清空错误信息
Object.keys(addFormErrors.value).forEach((key) => {
diff --git a/app/src/pages/mobile/MobileDashboard.vue b/app/src/pages/mobile/MobileDashboard.vue
index fe0eae9..3e1547c 100644
--- a/app/src/pages/mobile/MobileDashboard.vue
+++ b/app/src/pages/mobile/MobileDashboard.vue
@@ -62,6 +62,34 @@
图文视频 ({{ graphicVideoCount }})
{{ graphicVideoSize }}G
+
+
+
+
+
合集视频 ({{ mixCount || 0 }})
+
{{ videoMixSize }}G
+
+
+
+
+
+
+
短剧视频 ({{ seriesCount || 0 }})
+
{{ videoSeriesSize }}G
+
@@ -126,15 +154,17 @@