Merge remote-tracking branch 'origin/main' into feature/v1.3_主agent_rxd

This commit is contained in:
rd
2025-08-22 09:28:04 +08:00
4 changed files with 15 additions and 6 deletions

View File

@ -90,10 +90,10 @@ export default {
if (isVideo.value) {
return (
<div class="main-video-box mb-16px relative overflow-hidden cursor-pointer" onClick={togglePlay}>
<video ref={videoRef} class="w-100% h-100% object-cover" onEnded={onVideoEnded}></video>
<video ref={videoRef} class="w-100% h-100% object-contain" onEnded={onVideoEnded}></video>
{!isPlaying.value && (
<>
<img src={coverImageUrl.value} class="w-100% h-100% object-cover absolute z-0 top-0 left-0" />
<img src={coverImageUrl.value} class="w-100% h-100% object-contain absolute z-0 top-0 left-0" />
<div v-show={!isPlaying.value} class="play-icon"></div>
</>
)}