43 lines
1.3 KiB
Plaintext
43 lines
1.3 KiB
Plaintext
<!-- pages/index/index.wxml - 主菜单页面 -->
|
||
<view class="container">
|
||
<!-- 标题 -->
|
||
<view class="title-section">
|
||
<text class="game-title">报恩榴莲</text>
|
||
<text class="game-subtitle">三三合成 · 投喂Boss</text>
|
||
</view>
|
||
|
||
<!-- 最高分数展示 -->
|
||
<view class="stats-section">
|
||
<view class="stat-item">
|
||
<text class="stat-label">最高分数</text>
|
||
<text class="stat-value">{{maxScore}}</text>
|
||
</view>
|
||
<view class="stat-item">
|
||
<text class="stat-label">最高连击</text>
|
||
<text class="stat-value">{{maxCombo}}</text>
|
||
</view>
|
||
</view>
|
||
|
||
<!-- 开始游戏按钮 -->
|
||
<view class="button-section">
|
||
<button class="start-btn" bindtap="startGame">
|
||
<text class="btn-text">开始游戏</text>
|
||
</button>
|
||
|
||
<button class="continue-btn" wx:if="{{hasSaveData}}" bindtap="continueGame">
|
||
<text class="btn-text">继续第{{currentLevel}}关</text>
|
||
</button>
|
||
</view>
|
||
|
||
<!-- 图鉴入口(待实现) -->
|
||
<view class="collection-entry" bindtap="openCollection">
|
||
<text class="collection-text">📖 水果图鉴</text>
|
||
</view>
|
||
|
||
<!-- 底部说明 -->
|
||
<view class="footer">
|
||
<text class="footer-text">点击屏幕掉落水果,三个相同等级合成更高级</text>
|
||
<text class="footer-text">投喂Boss通关,小心别超过警戒线!</text>
|
||
</view>
|
||
</view>
|