6176f2c341
- records: 底部列表与月份选择器联动,新增 [本月|最近] 分段控件;标题/空态随模式切换 - leaderboard: 领奖台布局(冠军居中+皇冠)、次数标注于底座且三档水平对齐;头像 cloud:// 批量预解析提速(云函数需重新部署) - index/timer: 主色底图标改白色变体修复隐形;目标数字按微信字体缩放补偿真机遮挡 - settings: 配色方案横滑渐变色卡;头像上传前压缩至 200px - theme: 新增 teal 主题;暗黑背景统一对齐 - 圆形头像双保险(image 自身 border-radius)修复月/年榜方图 注: cloudfunctions/leaderboard 改动须在开发者工具重新部署才生效。
135 lines
4.4 KiB
Plaintext
135 lines
4.4 KiB
Plaintext
<view class="container page-enter" style="{{themeStyle}}">
|
|
|
|
<!-- 顶部问候 -->
|
|
<view class="greeting-row">
|
|
<view class="greeting-text">
|
|
<image class="greeting-icon" src="{{todayDone ? icons.successFill : icons.emojiFill}}" mode="aspectFit"></image>
|
|
<text class="greeting-title">{{todayDone ? '太棒了!' : '准备好了吗?'}}</text>
|
|
</view>
|
|
<text class="greeting-sub">{{todayDone ? '继续保持这个势头' : '今天的平板支撑等着你'}}</text>
|
|
</view>
|
|
|
|
<!-- 连续打卡卡片 -->
|
|
<ui-card variant="gradient in" class="{{justCompleted ? 'just-completed' : ''}}">
|
|
<view class="header-card">
|
|
<view class="streak-section">
|
|
<image class="streak-icon" src="{{icons.hotWhite}}" mode="aspectFit"></image>
|
|
<text class="streak-num">{{streakCount}}</text>
|
|
<text class="streak-label">连续打卡</text>
|
|
</view>
|
|
<view class="divider"></view>
|
|
<view class="plan-info">
|
|
<view class="plan-badge">
|
|
<image class="plan-badge-icon" src="{{icons.formWhite}}" mode="aspectFit"></image>
|
|
<text class="plan-badge-text">{{planName}}</text>
|
|
</view>
|
|
<view class="progress-bar-wrap">
|
|
<view class="progress-bar">
|
|
<view class="progress-fill" style="width: {{planProgress}}%;">
|
|
<view class="progress-glow"></view>
|
|
</view>
|
|
</view>
|
|
<text class="progress-label">第 {{planDay}} / {{planTotal}} 天</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</ui-card>
|
|
|
|
<!-- 今日目标卡片 -->
|
|
<ui-card variant="in">
|
|
<view class="target-section">
|
|
<view class="target-header">
|
|
<image class="section-icon" src="{{icons.targetFill}}" mode="aspectFit"></image>
|
|
<text class="section-title">今日目标</text>
|
|
</view>
|
|
<view class="target-display">
|
|
<view class="target-ring">
|
|
<text class="target-time" style="font-size: {{targetTimeFontSize}}rpx;">{{todayTargetText}}</text>
|
|
</view>
|
|
<text class="target-unit">平板支撑</text>
|
|
</view>
|
|
<view class="today-status">
|
|
<block wx:if="{{todayDone}}">
|
|
<view class="done-badge">
|
|
<image class="done-icon" src="{{icons.successFill}}" mode="aspectFit"></image>
|
|
<text class="done-text">今日已完成 {{todayDuration}} 秒</text>
|
|
</view>
|
|
</block>
|
|
<block wx:else>
|
|
<image class="pending-icon" src="{{icons.time}}" mode="aspectFit"></image>
|
|
<text class="pending-text">还未开始训练</text>
|
|
</block>
|
|
</view>
|
|
</view>
|
|
</ui-card>
|
|
|
|
<!-- 操作按钮区 -->
|
|
<view class="action-buttons">
|
|
<ui-btn
|
|
variant="primary"
|
|
size="xl"
|
|
block
|
|
text="{{todayDone ? '再次训练' : '开始训练'}}"
|
|
icon-src="{{icons.playWhite}}"
|
|
bindtap="onStartTrain"
|
|
></ui-btn>
|
|
|
|
<ui-btn
|
|
variant="ghost"
|
|
size="md"
|
|
block
|
|
text="自由训练 · 自定义时长"
|
|
icon-src="{{icons.timeFill}}"
|
|
bindtap="onFreeTrain"
|
|
></ui-btn>
|
|
</view>
|
|
|
|
<!-- 小提示 -->
|
|
<ui-card variant="soft" padded="{{false}}">
|
|
<view class="tip-card">
|
|
<image class="tip-icon" src="{{icons.lightFill}}" mode="aspectFit"></image>
|
|
<text class="tip-text">保持身体成一条直线,核心收紧,均匀呼吸</text>
|
|
</view>
|
|
</ui-card>
|
|
|
|
<!-- 时间选择弹窗 -->
|
|
<ui-modal
|
|
visible="{{showPicker}}"
|
|
position="bottom"
|
|
bind:close="onClosePicker"
|
|
>
|
|
<text class="picker-title">选择训练时长</text>
|
|
<view class="preset-grid">
|
|
<view
|
|
class="preset-item {{customDuration === item ? 'selected' : ''}}"
|
|
wx:for="{{presets}}"
|
|
wx:key="*this"
|
|
data-value="{{item}}"
|
|
bindtap="onSelectPreset"
|
|
>
|
|
<text class="preset-num">{{item}}</text>
|
|
<text class="preset-unit">秒</text>
|
|
</view>
|
|
</view>
|
|
<view class="custom-input-row">
|
|
<text class="custom-label">自定义:</text>
|
|
<input
|
|
class="custom-input"
|
|
type="number"
|
|
placeholder="输入秒数"
|
|
value="{{customInput}}"
|
|
bindinput="onCustomInput"
|
|
/>
|
|
<text class="custom-label">秒</text>
|
|
</view>
|
|
<ui-btn
|
|
variant="primary"
|
|
size="lg"
|
|
block
|
|
text="开始自由训练"
|
|
bindtap="onConfirmFree"
|
|
></ui-btn>
|
|
<text class="picker-cancel" bindtap="onClosePicker">取消</text>
|
|
</ui-modal>
|
|
</view>
|