Files
inchstep/miniapp/components/checkin-card/index.wxml
T
zeronline 545329ac40
CI / Server (Go) (push) Has been cancelled
CI / Web (Next.js) (push) Has been cancelled
CI / Mobile (React Native) (push) Has been cancelled
CI / Admin (React) (push) Has been cancelled
CI / Docker Build (push) Has been cancelled
修改页面
2026-06-25 16:33:32 +08:00

11 lines
465 B
Plaintext

<view class="card {{status}}" data-id="{{item.id}}" bindtap="onTap">
<view class="card-icon">{{item.icon || '📋'}}</view>
<view class="card-body">
<text class="card-name">{{item.name}}</text>
<text class="card-meta">{{categoryLabel}} · {{cycleLabel}}</text>
<text wx:if="{{done}}" class="done-badge">✓ 已打卡</text>
</view>
<view class="card-streak" wx:if="{{streak !== undefined}}">
<text>🔥 {{streak}}天</text>
</view>
</view>