|
@@ -3,7 +3,7 @@
|
|
|
* @Author: 空白格
|
|
|
* @Date: 2022-08-24 13:48:47
|
|
|
* @LastEditors: 空白格
|
|
|
- * @LastEditTime: 2023-04-19 11:26:38
|
|
|
+ * @LastEditTime: 2023-04-19 11:49:38
|
|
|
* @FilePath: \veterans_client_web\src\components\CourseVideo\index.vue
|
|
|
* @Copyright: Copyright (c) 2016~2022 by 空白格, All Rights Reserved.
|
|
|
-->
|
|
@@ -104,6 +104,7 @@ export default {
|
|
|
this.videoInfo.playedTime =
|
|
|
this.courseDetails.chapterList[0].playDuration;
|
|
|
this.isPay = true;
|
|
|
+ console.log('courseDetails.id', val);
|
|
|
// this.$nextTick(() => {
|
|
|
// let video = document.getElementById("myVideo");
|
|
|
// video.onpause = () => {
|
|
@@ -120,6 +121,7 @@ export default {
|
|
|
* @returns {any}
|
|
|
*/
|
|
|
chooseClasses(item) {
|
|
|
+ console.log('详情', item);
|
|
|
this.isPay = false;
|
|
|
this.submitVideoDuration(item, true);
|
|
|
},
|
|
@@ -198,27 +200,21 @@ export default {
|
|
|
}).then((res) => {
|
|
|
if (res.code === 200) {
|
|
|
console.log("已记录播放时长" + JSON.stringify(res.data));
|
|
|
- if (isNeed) {
|
|
|
- this.$emit("changeClasses", item);
|
|
|
- this.currentClasses = item;
|
|
|
- this.isPay = true;
|
|
|
- this.videoInfo.playedTime = item.playDuration;
|
|
|
- this.videoInfo.initial_time = item.currentDuration;
|
|
|
- // this.$nextTick(() => {
|
|
|
- // let video = document.getElementById("myVideo");
|
|
|
- // video.onpause = () => {
|
|
|
- // this.submitVideoDuration();
|
|
|
- // };
|
|
|
- // });
|
|
|
- }
|
|
|
}
|
|
|
});
|
|
|
- } else {
|
|
|
+ }
|
|
|
+ if (isNeed) {
|
|
|
this.$emit("changeClasses", item);
|
|
|
this.currentClasses = item;
|
|
|
this.isPay = true;
|
|
|
this.videoInfo.playedTime = item.playDuration;
|
|
|
this.videoInfo.initial_time = item.currentDuration;
|
|
|
+ // this.$nextTick(() => {
|
|
|
+ // let video = document.getElementById("myVideo");
|
|
|
+ // video.onpause = () => {
|
|
|
+ // this.submitVideoDuration();
|
|
|
+ // };
|
|
|
+ // });
|
|
|
}
|
|
|
},
|
|
|
},
|