feat: 更新视频播放器功能并修复多个问题

- 升级edu-core依赖至v1.0.8
- 新增测试页面路由配置
- 修复订单页面Android平台专属支付按钮逻辑
- 优化视频播放器组件,增加倍速播放配置和控件显示逻辑
- 修复iOS平台视频封面显示问题
- 改进全屏模式处理逻辑
- 优化进度条和控制栏交互体验
- 修复DOM元素查找延迟问题
- 移除课程详情页冗余刷新逻辑
This commit is contained in:
2026-03-03 16:01:58 +08:00
parent a67874754f
commit 5200c73bc5
14 changed files with 420 additions and 143 deletions

26
pages/index.vue Normal file
View File

@@ -0,0 +1,26 @@
<template>
<view style="padding-top: 60rpx;">
<VideoPlayer />
</view>
</template>
<script>
import VideoPlayer from "@/components/video-player/video-player.vue";
// import YbPlayer from '@/libs/yb-player.js'
export default {
components: {
VideoPlayer,
},
data () {
return {}
},
mounted () {
},
methods: {
}
}
</script>
<style>
</style>