Files
soul-yongping/miniprogram/pages/about/about.wxml

55 lines
2.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="nav-bar" style="height: {{navBarHeight || (statusBarHeight + 44)}}px; padding-top: {{statusBarHeight || 44}}px; box-sizing: border-box;">
<view class="nav-inner safe-header-right">
<view class="nav-back" bindtap="goBack">← 返回</view>
<text class="nav-title">关于作者</text>
</view>
</view>
<view class="main">
<view class="card author-card">
<view class="author-avatar">{{authorInitial}}</view>
<text class="author-name">{{authorInfo.name}}</text>
<text class="author-desc">{{authorInfo.description}}</text>
<view class="author-tags">
<text class="tag brand">🕐 每日 {{authorInfo.liveTime}}</text>
<text class="tag">💬 {{authorInfo.platform}}</text>
</view>
</view>
<view class="stats">
<view class="stat-item" wx:for="{{stats}}" wx:key="label">
<text class="stat-icon">{{item.icon}}</text>
<text class="stat-value">{{item.value}}</text>
<text class="stat-label">{{item.label}}</text>
</view>
</view>
<view class="card section">
<text class="section-title">关于这本书</text>
<view class="section-paras">
<text class="section-para">"这不是一本教你成功的鸡汤书。"</text>
<text class="section-para">这是我每天早上6点到9点在Soul派对房和几百个陌生人分享的真实故事。</text>
<text class="section-para brand">"社会不是靠努力,是靠洞察与选择。"</text>
</view>
</view>
<view class="card section">
<text class="section-title">创业历程</text>
<view class="timeline">
<view class="timeline-item" wx:for="{{milestones}}" wx:key="year">
<view class="timeline-dot-wrap">
<view class="timeline-dot"></view>
<view class="timeline-line" wx:if="{{index < milestones.length - 1}}"></view>
</view>
<view class="timeline-content">
<text class="milestone-year">{{item.year}}</text>
<text class="milestone-event">{{item.event}}</text>
</view>
</view>
</view>
</view>
<view class="card join-card">
<text class="join-title">想听更多真实故事?</text>
<text class="join-desc">每天早上6-9点卡若在Soul派对房免费分享</text>
<view class="btn-join" bindtap="onJoinParty">💬 加入派对群</view>
</view>
</view>
</view>