Files
MiniProgram/NamingAssistant/pages/result/index.ttml
2025-11-05 17:26:52 +08:00

42 lines
1.4 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<view class="page">
<view class="glow-layer">
<view class="glow glow-one"></view>
<view class="glow glow-two"></view>
</view>
<scroll-view class="content" scroll-y="true">
<view class="headline">
<text class="title">八字名鉴</text>
<text class="subtitle">以生辰八字为准,优选五行调衡的候选姓名</text>
</view>
<view class="summary" tt:if="{{matchSummary}}">
<text class="summary-text">{{matchSummary}}</text>
</view>
<view class="empty" tt:if="{{!results.length}}">
<text>暂无生成结果,请返回主页重新生成。</text>
<button class="primary back-button" bindtap="handleBack">返回主页</button>
</view>
<view tt:if="{{results.length}}">
<view class="tip">轻触收藏按钮即可将心仪姓名收入星册</view>
<block tt:for="{{results}}" tt:for-index="index" tt:for-item="item" tt:key="name">
<view class="result-card">
<text class="result-line">{{item.name}}{{item.meaning}}{{item.elementReason}}</text>
<button
class="collect-button"
size="mini"
bindtap="handleFavorite"
data-name="{{item.name}}"
data-meaning="{{item.meaning}}"
>
收藏
</button>
</view>
</block>
<button class="primary back-button" bindtap="handleBack">再测一批</button>
</view>
</scroll-view>
</view>