<!-- 小贴士 -->
<view class="container">
  <view class="page-title">💡 小贴士</view>

  <view class="filter-bar">
    <text class="filter-tag {{currentCat===''?'active':''}}" bindtap="setCat" data-cat="">全部</text>
    <text class="filter-tag {{currentCat==='storage'?'active':''}}" bindtap="setCat" data-cat="storage">储存</text>
    <text class="filter-tag {{currentCat==='cooking'?'active':''}}" bindtap="setCat" data-cat="cooking">烹饪</text>
    <text class="filter-tag {{currentCat==='seasonal'?'active':''}}" bindtap="setCat" data-cat="seasonal">时令</text>
    <text class="filter-tag {{currentCat==='general'?'active':''}}" bindtap="setCat" data-cat="general">通用</text>
  </view>

  <view class="tip-card" wx:for="{{tips}}" wx:key="id">
    <text class="tip-content">{{item.content}}</text>
    <text class="tip-cat text-muted">{{item.category}}</text>
  </view>
</view>
