mirror of
https://gitee.com/qingqing-coconut-tea/RcKtFezyRAZX
synced 2026-07-21 10:32:32 +08:00
37 lines
1.5 KiB
Plaintext
37 lines
1.5 KiB
Plaintext
<!-- components/article-card/article-card.wxml -->
|
||
<!-- 文章卡片组件 -->
|
||
|
||
<view class="article-card" bindtap="onTap">
|
||
<view class="card-content">
|
||
<image class="cover" wx:if="{{article.coverImage}}" src="{{article.coverImage}}" mode="aspectFill" />
|
||
<view class="info">
|
||
<text class="title">{{article.title}}</text>
|
||
<text class="summary">{{article.summary}}</text>
|
||
<view class="meta">
|
||
<text class="author">{{article.authorName}}</text>
|
||
<text class="time">{{article.createTime}}</text>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
<view class="card-actions" wx:if="{{showActions}}">
|
||
<view class="action-item {{isLike ? 'active' : ''}}" bindtap="onLike">
|
||
<text class="iconfont {{isLike ? 'icon-like-fill' : 'icon-like'}}"></text>
|
||
<text>{{article.likeCount || 0}}</text>
|
||
</view>
|
||
<view class="action-item {{isFavorite ? 'active' : ''}}" bindtap="onFavorite">
|
||
<text class="iconfont {{isFavorite ? 'icon-favorite-fill' : 'icon-favorite'}}"></text>
|
||
<text>{{article.favoriteCount || 0}}</text>
|
||
</view>
|
||
<view class="action-item" bindtap="onShare">
|
||
<text class="iconfont icon-share"></text>
|
||
<text>分享</text>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
|
||
/**
|
||
* @联系作者:16768118056
|
||
* @描述:(此项目非免费分享)源码百分百可用,搞定毕设不发愁,支持远程调试安装、二次开发、定制、讲解、文档类。
|
||
* @访问:https://www.notmaker.com/detail/8326a897119d4542896c863a69d7bbe7/gtt20260415,查看完整运行演示。
|
||
*/
|