54 lines
1.8 KiB
Plaintext
54 lines
1.8 KiB
Plaintext
<!-- 首页 - 功能入口 -->
|
|
<view class="container home">
|
|
<view class="home-header">
|
|
<text class="home-title">健康数据追踪</text>
|
|
<text class="home-desc">选择您需要的功能</text>
|
|
</view>
|
|
|
|
<view class="home-grid">
|
|
<!-- 录入检查数据 -->
|
|
<view class="home-card" bindtap="goEntry">
|
|
<view class="home-card-icon home-card-icon--entry">
|
|
<text class="home-card-emoji">📝</text>
|
|
</view>
|
|
<text class="home-card-title">录入检查数据</text>
|
|
<text class="home-card-desc">记录每日健康指标</text>
|
|
</view>
|
|
|
|
<!-- 管理检查项目 -->
|
|
<view class="home-card" bindtap="goItems">
|
|
<view class="home-card-icon home-card-icon--items">
|
|
<text class="home-card-emoji">⚙️</text>
|
|
</view>
|
|
<text class="home-card-title">管理检查项目</text>
|
|
<text class="home-card-desc">自定义追踪指标</text>
|
|
</view>
|
|
|
|
<!-- 数据趋势 -->
|
|
<view class="home-card" bindtap="goTrend">
|
|
<view class="home-card-icon home-card-icon--trend">
|
|
<text class="home-card-emoji">📈</text>
|
|
</view>
|
|
<text class="home-card-title">数据趋势</text>
|
|
<text class="home-card-desc">查看变化趋势图</text>
|
|
</view>
|
|
|
|
<!-- 数据详细信息 -->
|
|
<view class="home-card" bindtap="goDetails">
|
|
<view class="home-card-icon home-card-icon--details">
|
|
<text class="home-card-emoji">📋</text>
|
|
</view>
|
|
<text class="home-card-title">数据详细信息</text>
|
|
<text class="home-card-desc">浏览与管理数据</text>
|
|
</view>
|
|
</view>
|
|
|
|
<!-- 清除所有数据 -->
|
|
<view class="clear-section">
|
|
<view class="clear-btn" bindtap="onClearAll">
|
|
<text class="clear-icon">🗑️</text>
|
|
<text class="clear-text">清除所有历史数据</text>
|
|
</view>
|
|
</view>
|
|
</view>
|