1、修复关注同步时报https证书错误问题

2、关注列表点头像跳抖音博主首页
This commit is contained in:
jianzhichu
2025-12-04 22:01:38 +08:00
parent 385e53561a
commit c03dc5beff
12 changed files with 370 additions and 134 deletions
+5 -1
View File
@@ -43,7 +43,7 @@
</div>
<div class="card-main-content">
<div class="avatar-wrapper">
<div class="avatar-wrapper" @click="goDouyinUp(item)">
<a-avatar shape="circle" size="large" :src="item.uperAvatar" v-if="item.uperAvatar" />
<a-avatar shape="circle" size="large" v-else class="avatar-placeholder">
{{ item.uperName.charAt(0) }}
@@ -667,6 +667,10 @@ const handleDeleteItem = (item: FollowItem) => {
},
});
};
const goDouyinUp = (item) => {
window.open('https://www.douyin.com/user/' + item.secUid, '_blank', 'noopener noreferrer');
};
</script>
<style scoped>