44 lines
1.5 KiB
Plaintext
44 lines
1.5 KiB
Plaintext
<view class="page">
|
|
<view class="top">
|
|
<text class="eyebrow">ARCHIVE</text>
|
|
<text class="title">解读档案</text>
|
|
<text class="subtitle">每一次请先生解读,都会在这里沉淀成一份记录。</text>
|
|
</view>
|
|
|
|
<view class="stats">
|
|
<view class="stat-card">
|
|
<text class="stat-value">{{reportCount}}</text>
|
|
<text class="stat-label">累计报告</text>
|
|
</view>
|
|
<view class="stat-card">
|
|
<text class="stat-value">{{completedCount}}</text>
|
|
<text class="stat-label">已完成</text>
|
|
</view>
|
|
</view>
|
|
|
|
<view wx:if="{{reports.length}}" class="archive-list">
|
|
<view wx:for="{{reports}}" wx:key="id" class="record" bindtap="openReport" data-id="{{item.id}}">
|
|
<view class="record-mark">
|
|
<text>掌</text>
|
|
</view>
|
|
<view class="record-main">
|
|
<view class="record-head">
|
|
<view>
|
|
<text class="record-title">手相报告</text>
|
|
<text class="record-date">{{item.createdDate}}</text>
|
|
</view>
|
|
<text class="status {{item.status}}">{{item.statusText}}</text>
|
|
</view>
|
|
<text class="summary">{{item.overall_summary || item.fallbackSummary}}</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<view wx:else class="empty">
|
|
<view class="empty-orb">掌</view>
|
|
<text class="empty-title">还没有解读档案</text>
|
|
<text class="empty-copy">先从手相报告开始,让赛博先生留下第一条记录。</text>
|
|
<button class="primary-btn action" bindtap="goHome">请先生看掌</button>
|
|
</view>
|
|
</view>
|