feat: 集成edu-core模块并重构课程详情页视频播放

- 添加edu-core本地依赖,用于视频播放组件
- 重构课程详情页,使用CourseVideo组件替换原有视频播放逻辑
- 优化课程列表页布局和样式,修复边框单位问题
- 更新manifest.json支持多方向屏幕旋转
This commit is contained in:
2026-02-09 10:29:59 +08:00
parent 671b7eb63d
commit 0e900d19be
33 changed files with 11533 additions and 98 deletions

View File

@@ -1,15 +1,17 @@
import $http from '@/config/requestConfig'
const platform = uni.getSystemInfoSync().platform;
export const mainPagePath = ['pages/doctors/index']
export const homePath = '/pages/doctors/index'
export default {
/****************以下是z-nav-bar插件配置*******************/
// 主页页面的页面路径
// 关联功能:打开的页面只有一个的时候右上角自动显示返回首页按钮,下面这个数组是排除显示返回首页的页面。
// 主页使用场景:小程序分享出去的页面,用户点击开是分享页面,很多情况下是没有返回首页按钮的
// mainPagePath: ['pages/home/index'],
mainPagePath: ['pages/doctors/index'],
mainPagePath,
//返回首页的地址
// homePath: '/pages/home/index',
homePath: '/pages/doctors/index',
homePath,
/****************以下是zhouWei-APPUpdate插件配置*******************/
// 发起ajax请求获取服务端版本号
@@ -75,4 +77,4 @@ export default {
appUpdateColor: "f00",
// 弹窗图标(不填显示默认图标,链接配置示例如: '/static/demo/ic_attention.png'
appUpdateIcon: ''
}
}