fix: 优化分享按钮布局+去掉重复推广入口

1. 阅读页分享按钮:改为全宽纵向排列
2. 新增复制文案功能
3. 我的页面:去掉顶部推广入口卡片(保留菜单中的推广中心)
This commit is contained in:
卡若
2026-01-25 20:35:30 +08:00
parent 1d11490405
commit 8a13505381
4 changed files with 44 additions and 26 deletions

View File

@@ -85,16 +85,24 @@
<view class="action-header">
<text class="action-title">分享这篇内容</text>
</view>
<view class="action-buttons">
<button class="action-btn btn-share" open-type="share">
<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>
</button>
<view class="action-btn btn-poster" bindtap="generatePoster">
</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>
</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>
</view>
</view>
</view>