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);
}

View File

@@ -25,7 +25,7 @@
</view>
<!-- 跳转式视频播放 -->
<view v-else @tap="playVideo" class="video-container">
<view v-else @tap.stop="playVideo" @click.stop="playVideo" class="video-container">
<view class="video-cover-wrap" :style="coverStyle">
<image class="video-cover" :src="$util.img(value.coverUrl)" mode="aspectFill"></image>
<view class="channel-play-btn" v-if="showPlayBtn" :style="playBtnStyle">
@@ -180,8 +180,12 @@ export default {
finderUserName: this.finderUserName
}
console.log('playload', playload);
this.$emit('video-play', playload);
// #endif
this.$emit('video-play', playload);
// #endif
// #ifdef H5
this.$emit('video-play', this.value);
// #endif
}
}
};