chore(电子名片): 支持点击视频号视频,观看次数+1

This commit is contained in:
2026-01-12 17:46:15 +08:00
parent 3f894bcb20
commit 02e9cfa313
3 changed files with 28 additions and 6 deletions

View File

@@ -225,6 +225,10 @@ export default {
promiseCallback: async (event, handler, awaitedResult) => {
if (!awaitedResult) return;
try {
// 发送视频被点击播放事件
this.$emit('channel-video-click-play', item);
console.log('播放视频:', item);
// #ifdef MP-WEIXIN
// 在微信小程序环境中调用视频播放接口
await wechatChannelUtil.playVideo(item);
@@ -233,7 +237,7 @@ export default {
// #ifndef MP-WEIXIN
// 在非微信小程序环境中,直接触发事件
this.$emit('video-play', item);
// #endif
// #endif
} catch (err) {
console.error('打开视频号失败', err);
}