mirror of
https://gitee.com/qingqing-coconut-tea/RcKtFezyRAZX
synced 2026-07-21 10:32:32 +08:00
25 lines
1.1 KiB
Plaintext
25 lines
1.1 KiB
Plaintext
<!-- components/user-card/user-card.wxml -->
|
||
<!-- 用户卡片组件 -->
|
||
|
||
<view class="user-card" bindtap="onTap">
|
||
<image class="avatar" src="{{user.avatar || '/static/images/default-avatar.png'}}" />
|
||
<view class="info">
|
||
<text class="nickname">{{user.nickname}}</text>
|
||
<text class="bio" wx:if="{{user.bio}}">{{user.bio}}</text>
|
||
<view class="stats" wx:if="{{user.articleCount || user.favoriteCount || user.followerCount}}">
|
||
<text class="stat">文章 {{user.articleCount || 0}}</text>
|
||
<text class="stat">粉丝 {{user.followerCount || 0}}</text>
|
||
<text class="stat">获赞 {{user.likeCount || 0}}</text>
|
||
</view>
|
||
</view>
|
||
<button class="follow-btn {{isFollowing ? 'following' : ''}}" wx:if="{{showFollow}}" bindtap="onFollow">
|
||
{{isFollowing ? '已关注' : '关注'}}
|
||
</button>
|
||
</view>
|
||
|
||
/**
|
||
* @联系作者:16768118056
|
||
* @描述:(此项目非免费分享)源码百分百可用,搞定毕设不发愁,支持远程调试安装、二次开发、定制、讲解、文档类。
|
||
* @访问:https://www.notmaker.com/detail/8326a897119d4542896c863a69d7bbe7/gtt20260415,查看完整运行演示。
|
||
*/
|