chore: 更新视频音频播放组件

- 将 edu-core 依赖从本地文件改为 git 仓库引用 (v1.0.3)
- 在“我的”页面为特定列表项添加 Android 平台条件渲染
- 将应用版本号从 1.0.06 (1006) 更新至 1.0.07 (1007)
- 将开发环境的基础 API URL 从本地测试地址切换为线上正式地址
- 全局注册 CommonCourseVideo 组件,并在课程详情页用它替换原有视频组件
This commit is contained in:
2026-02-10 13:05:45 +08:00
parent 0e900d19be
commit 44eef4e0ed
6 changed files with 12 additions and 14 deletions

View File

@@ -3,8 +3,8 @@ let baseUrl = "";
let socketUrl = "";
if (process.env.NODE_ENV === 'development') {
// 开发环境
baseUrl = "http://192.168.110.100:9200/pb/"; // 张川川
// baseUrl = "https://api.nuttyreading.com/"; //线上正式
// baseUrl = "http://192.168.110.100:9200/pb/"; // 张川川
baseUrl = "https://api.nuttyreading.com/"; // 线上正式
} else if (process.env.NODE_ENV === 'production') {
// baseUrl = "http://192.168.110.100:9200/pb/"; // 张川川
baseUrl = "https://api.nuttyreading.com/"; //线上正式