chore(视频号组件): 非微信小程序环境,发送消息,让父组件决定来怎么操作

This commit is contained in:
2026-01-12 15:03:28 +08:00
parent 6ab2834fdc
commit 8b01d8f8ec

View File

@@ -229,6 +229,11 @@ export default {
// 在微信小程序环境中调用视频播放接口
await wechatChannelUtil.playVideo(item);
// #endif
// #ifndef MP-WEIXIN
// 在非微信小程序环境中,直接触发事件
this.$emit('video-play', item);
// #endif
} catch (err) {
console.error('打开视频号失败', err);
}