更新小程序配置,重构页面结构,删除不再使用的地址管理和章节页面,优化项目结构以提升可维护性;调整全局样式,增强组件的可复用性和一致性。
This commit is contained in:
@@ -1,54 +0,0 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user