This commit is contained in:
2025-09-14 00:21:54 +08:00
commit d40b3bbd62
766 changed files with 36275 additions and 0 deletions

View File

@@ -0,0 +1,51 @@
<view class="container">
<showbox title="当前页面配置了【onShareAppMessage】【onShareChat】【onShareTimeline】【onCopyUrl】">
<box class="box">
<view class="title">打开「胶囊按钮」点击「站内私信」观察「onShareAppMessage」消息回调内容</view>
<view>
<view class="share-desc">
[onShareAppMessage] 消息回调内容:
</view>
<view class="share-resp _mt8">
{{ onShareAppMessageResult ? JSON.stringify(onShareAppMessageResult, null, 2) : '暂无返回' }}
</view>
</view>
</box>
<box class="box">
<view>
<view class="title">打开「胶囊按钮」,点击「微信-私信分享」观察「onShareChat」消息回调内容</view>
<view class="share-desc">
[onShareChat] 消息回调内容:
</view>
<view class="share-resp _mt8">
{{ onShareChatResult ? JSON.stringify(onShareChatResult, null, 2) : '暂无返回' }}
</view>
</view>
</box>
<box class="box">
<view>
<view class="title">打开「胶囊按钮」,点击「微信-朋友圈分享」观察「onShareTimeline」消息回调内容</view>
<view class="share-desc">
[onShareTimeline] 消息回调内容:
</view>
<view class="share-resp _mt8">
{{ onShareTimelineResult ? JSON.stringify(onShareTimelineResult, null, 2) : '暂无返回' }}
</view>
</view>
</box>
<box class="box">
<view>
<view class="title">打开「胶囊按钮」点击「复制链接」观察「onCopyUrl」消息回调内容</view>
<view class="share-desc">
[onCopyUrl] 消息回调内容:
</view>
<view class="share-resp _mt8">
{{ onCopyUrlResult ? JSON.stringify(onCopyUrlResult, null, 2) : '暂无返回' }}
</view>
</view>
</box>
</showbox>
</view>