2026-02-08 21:17:12 +08:00
|
|
|
<view class="container">
|
2026-02-20 15:10:23 +08:00
|
|
|
<view class="nav-back" bindtap="handleBack">
|
|
|
|
|
<text class="back-icon">⇠</text>
|
|
|
|
|
<text class="back-text">返回</text>
|
|
|
|
|
</view>
|
2026-02-08 21:17:12 +08:00
|
|
|
<view class="header">
|
|
|
|
|
<text class="page-title">{{categoryName}}</text>
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
<view class="article-list">
|
|
|
|
|
<view
|
|
|
|
|
class="article-item"
|
|
|
|
|
wx:for="{{articles}}"
|
|
|
|
|
wx:key="id"
|
|
|
|
|
bindtap="goToArticle"
|
|
|
|
|
data-id="{{item.id}}"
|
|
|
|
|
hover-class="item-hover"
|
|
|
|
|
>
|
|
|
|
|
<text class="article-title">{{item.title}}</text>
|
|
|
|
|
<text class="article-summary">{{item.summary}}</text>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|