|
|
@@ -6,7 +6,7 @@
|
|
|
|
|
|
<div v-if="videoUrls.nw" class="video-corner top-left">
|
|
|
<template v-if="activeVideos.nw">
|
|
|
- <XgVideoPlayer :src="videoUrls.nw" />
|
|
|
+ <XgVideoPlayer :src="videoUrls.nw" :autoplay="true" />
|
|
|
<div class="close-btn" title="关闭视频" @click="closeVideo('nw')">✕</div>
|
|
|
</template>
|
|
|
<div v-else class="empty-state" @click="openVideo('nw')" title="点击关联视频">
|
|
|
@@ -17,7 +17,7 @@
|
|
|
|
|
|
<div v-if="videoUrls.ne" class="video-corner top-right">
|
|
|
<template v-if="activeVideos.ne">
|
|
|
- <XgVideoPlayer :src="videoUrls.ne" />
|
|
|
+ <XgVideoPlayer :src="videoUrls.ne" :autoplay="true" />
|
|
|
<div class="close-btn" title="关闭视频" @click="closeVideo('ne')">✕</div>
|
|
|
</template>
|
|
|
<div v-else class="empty-state" @click="openVideo('ne')" title="点击关联视频">
|
|
|
@@ -28,7 +28,7 @@
|
|
|
|
|
|
<div v-if="videoUrls.sw" class="video-corner bottom-left">
|
|
|
<template v-if="activeVideos.sw">
|
|
|
- <XgVideoPlayer :src="videoUrls.sw" />
|
|
|
+ <XgVideoPlayer :src="videoUrls.sw" :autoplay="true" />
|
|
|
<div class="close-btn" title="关闭视频" @click="closeVideo('sw')">✕</div>
|
|
|
</template>
|
|
|
<div v-else class="empty-state" @click="openVideo('sw')" title="点击关联视频">
|
|
|
@@ -39,7 +39,7 @@
|
|
|
|
|
|
<div v-if="videoUrls.se" class="video-corner bottom-right">
|
|
|
<template v-if="activeVideos.se">
|
|
|
- <XgVideoPlayer :src="videoUrls.se" />
|
|
|
+ <XgVideoPlayer :src="videoUrls.se" :autoplay="true" />
|
|
|
<div class="close-btn" title="关闭视频" @click="closeVideo('se')">✕</div>
|
|
|
</template>
|
|
|
<div v-else class="empty-state" @click="openVideo('se')" title="点击关联视频">
|