This commit is contained in:
2026-07-10 16:14:31 +08:00
commit 637b0bd144
158 changed files with 33269 additions and 0 deletions
@@ -0,0 +1,19 @@
<view wx:if="{{visible}}" class="checkin-overlay" catchtap="handleOverlayTap">
<view class="checkin-popup" catchtap="noop">
<image class="popup-bg" src="/static/images/sign_bg.png" mode="widthFix"></image>
<view class="days-row">
<view wx:for="{{days}}" wx:key="day" class="day-item {{item.today ? 'today' : ''}}">
<text class="day-label">{{item.label}}</text>
<image class="day-coin" src="/static/images/sign_glob_icon.png" mode="aspectFit"></image>
<view class="day-check">
<text></text>
</view>
</view>
</view>
<view class="close-hotspot" bindtap="handleClose"></view>
<view class="receive-hotspot {{userInfo.is_sign ? 'disabled': ''}}" bindtap="sign"></view>
<view class="rule-hotspot" bindtap="handleRule"></view>
</view>
</view>