fix: 优化分享布局+海报去邀请码

1. 阅读页分享按钮改为一行三个(分享/海报/文案)
2. 海报去掉邀请码区域,简化底部
3. 复制文案改为朋友圈风格
This commit is contained in:
卡若
2026-01-25 20:41:38 +08:00
parent 8a13505381
commit 138495c90b
4 changed files with 45 additions and 69 deletions

View File

@@ -82,25 +82,18 @@
<!-- 分享操作区 -->
<view class="action-section">
<view class="action-header">
<text class="action-title">分享这篇内容</text>
</view>
<view class="action-row">
<button class="action-btn-full btn-share-full" open-type="share">
<text class="action-icon">💬</text>
<text class="action-text">分享给好友</text>
<view class="action-row-inline">
<button class="action-btn-inline btn-share-inline" open-type="share">
<text class="action-icon-small">💬</text>
<text class="action-text-small">分享</text>
</button>
</view>
<view class="action-row">
<view class="action-btn-full btn-poster-full" bindtap="generatePoster">
<text class="action-icon">🖼️</text>
<text class="action-text">生成海报</text>
<view class="action-btn-inline btn-poster-inline" bindtap="generatePoster">
<text class="action-icon-small">🖼️</text>
<text class="action-text-small">海报</text>
</view>
</view>
<view class="action-row">
<view class="action-btn-full btn-copy-full" bindtap="copyShareText">
<text class="action-icon">📝</text>
<text class="action-text">复制文案</text>
<view class="action-btn-inline btn-copy-inline" bindtap="copyShareText">
<text class="action-icon-small">📝</text>
<text class="action-text-small">文案</text>
</view>
</view>
</view>