This commit is contained in:
haomingming
2025-08-25 14:24:59 +08:00
parent 979c332454
commit ad85572062
53 changed files with 7076 additions and 30 deletions
+7 -2
View File
@@ -21,7 +21,12 @@
<scroll-view class="content-scroll" scroll-y :show-scrollbar="false" @scrolltolower="onScrollToLower" lower-threshold="60">
<!-- 视频区域 -->
<view class="player-wrapper">
<video class="player" :src="videoSrc" :poster="poster" controls objectFit="contain"></video>
<!-- #ifdef APP -->
<uniVideo></uniVideo>
<!-- #endif -->
<!-- #ifdef MP-WEIXIN -->
<video class="player" :src="videoSrc" :poster="poster" controls objectFit="contain"></video>
<!-- #endif -->
</view>
<!-- 标签切换 -->
@@ -70,7 +75,7 @@
<script setup>
import { ref } from 'vue';
import uniVideo from '@/components/uniVideo/uniVideo.vue';
const videoSrc = ref('');
const poster = ref('/static/livebg.png');
const activeTab = ref('info');