|
@@ -16,20 +16,24 @@
|
|
@ended="onVideoEnded"
|
|
@ended="onVideoEnded"
|
|
:src="videoinfo.info.url"
|
|
:src="videoinfo.info.url"
|
|
@timeupdate="timeUpdate"
|
|
@timeupdate="timeUpdate"
|
|
|
|
+ :initial-time="timeStamp"
|
|
|
|
+ @play="time"
|
|
></video>
|
|
></video>
|
|
<!-- </div> -->
|
|
<!-- </div> -->
|
|
<div class="like">
|
|
<div class="like">
|
|
- <div class="flex">
|
|
|
|
- <img class="image" src="../../assets/images/like.png" alt="" />
|
|
|
|
- <span class="number">{{ videoinfo.info.like_num }}</span>
|
|
|
|
|
|
+ <div class="flex" @click="like" style="cursor: pointer;">
|
|
|
|
+ <img v-if="is_like==1" class="image" src="../../assets/images/like.png" alt="" />
|
|
|
|
+ <img v-else class="image" src="../../assets/images/likea.png" alt="" />
|
|
|
|
+ <span :style="{color:is_like==0?'rgba(0, 83, 255, 1)':''}" class="number">{{ videoinfo.info.like_num }}</span>
|
|
</div>
|
|
</div>
|
|
- <div class="flex left">
|
|
|
|
- <img class="image" src="../../assets/images/Collect.png" alt="" />
|
|
|
|
- <span class="number">{{ videoinfo.info.collect_num }}</span>
|
|
|
|
|
|
+ <div class="flex left" @click="collect" style="cursor: pointer;">
|
|
|
|
+ <img v-if="is_collect==1" class="image" src="../../assets/images/Collect.png" alt="" />
|
|
|
|
+ <img v-else class="image" src="../../assets/images/collecta.png" alt="" />
|
|
|
|
+ <span :style="{color:is_collect==0?'rgba(254, 198, 64, 1)':''}" class="number">{{ videoinfo.info.collect_num }}</span>
|
|
</div>
|
|
</div>
|
|
- <div class="flex left">
|
|
|
|
|
|
+ <div class="flex left" style="cursor: pointer;">
|
|
<img class="image" src="../../assets/images/mission.png" alt="" />
|
|
<img class="image" src="../../assets/images/mission.png" alt="" />
|
|
- <span class="number">分享</span>
|
|
|
|
|
|
+ <span class="number" @click="shareLink">分享</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@@ -48,7 +52,10 @@
|
|
/>
|
|
/>
|
|
</div>
|
|
</div>
|
|
<div class="bluebtn" @click="comment">发布评论</div>
|
|
<div class="bluebtn" @click="comment">发布评论</div>
|
|
- <div class="comment-list">
|
|
|
|
|
|
+ <div
|
|
|
|
+ class="comment-list"
|
|
|
|
+ v-if="JSON.stringify(videoinfo.info) != '{}'"
|
|
|
|
+ >
|
|
<dl v-for="(item, idx) in commentList.list" :key="idx">
|
|
<dl v-for="(item, idx) in commentList.list" :key="idx">
|
|
<dt>
|
|
<dt>
|
|
<row
|
|
<row
|
|
@@ -57,6 +64,13 @@
|
|
reply=""
|
|
reply=""
|
|
:descs="item.content"
|
|
:descs="item.content"
|
|
:time="item.created_at"
|
|
:time="item.created_at"
|
|
|
|
+ :course_id="videoinfo.info.course_id"
|
|
|
|
+ :video_id="route.query.id"
|
|
|
|
+ :author_id="item.member.id"
|
|
|
|
+ :avatar="item.member.avatar"
|
|
|
|
+ @list="comment_list"
|
|
|
|
+ :reply_id="item.id"
|
|
|
|
+ :reply_p_id="item.id"
|
|
></row>
|
|
></row>
|
|
</dt>
|
|
</dt>
|
|
<dd v-for="(child, index) in item.reply" :key="index">
|
|
<dd v-for="(child, index) in item.reply" :key="index">
|
|
@@ -64,11 +78,28 @@
|
|
:name="child.member.nickname"
|
|
:name="child.member.nickname"
|
|
:reply="child.reply_member.nickname"
|
|
:reply="child.reply_member.nickname"
|
|
:descs="child.content"
|
|
:descs="child.content"
|
|
|
|
+ :course_id="videoinfo.info.course_id"
|
|
|
|
+ :video_id="route.query.id"
|
|
|
|
+ :author_id="child.member.id"
|
|
|
|
+ :avatar="child.member.avatar"
|
|
|
|
+ @list="comment_list"
|
|
:time="child.created_at"
|
|
:time="child.created_at"
|
|
|
|
+ :reply_id="child.id"
|
|
|
|
+ :reply_p_id="child.reply_p_id"
|
|
></row>
|
|
></row>
|
|
</dd>
|
|
</dd>
|
|
</dl>
|
|
</dl>
|
|
</div>
|
|
</div>
|
|
|
|
+ <div>
|
|
|
|
+ <el-pagination
|
|
|
|
+ background
|
|
|
|
+ layout="prev, pager, next"
|
|
|
|
+ :total="total"
|
|
|
|
+ @size-change="handleSizeChange"
|
|
|
|
+ @current-change="handleCurrentChange"
|
|
|
|
+ :page-size="5"
|
|
|
|
+ />
|
|
|
|
+ </div>
|
|
</div>
|
|
</div>
|
|
<div v-else>
|
|
<div v-else>
|
|
<div class="bigtitle">评论</div>
|
|
<div class="bigtitle">评论</div>
|
|
@@ -83,22 +114,27 @@
|
|
</div>
|
|
</div>
|
|
<div class="right">
|
|
<div class="right">
|
|
<div class="title">云厂长视频中心</div>
|
|
<div class="title">云厂长视频中心</div>
|
|
- <div class="flex item">
|
|
|
|
|
|
+ <div
|
|
|
|
+ class="flex item"
|
|
|
|
+ @click="toinfo(item.id)"
|
|
|
|
+ v-for="(item, idx) in imgList.list"
|
|
|
|
+ :key="idx"
|
|
|
|
+ >
|
|
<div class="" style="display: flex; flex: 1">
|
|
<div class="" style="display: flex; flex: 1">
|
|
<img class="mg" src="../../assets/images/price_bg.png" alt="" />
|
|
<img class="mg" src="../../assets/images/price_bg.png" alt="" />
|
|
<div class="font">
|
|
<div class="font">
|
|
- <div class="title">销售模块</div>
|
|
|
|
|
|
+ <div class="title">{{ item.title }}</div>
|
|
<div
|
|
<div
|
|
class="flex info"
|
|
class="flex info"
|
|
style="align-items: center; justify-content: space-between"
|
|
style="align-items: center; justify-content: space-between"
|
|
>
|
|
>
|
|
- <div class="order">共24节课</div>
|
|
|
|
- <div class="people">共24人学习</div>
|
|
|
|
|
|
+ <div class="order">共{{ item.video_num }}节课</div>
|
|
|
|
+ <div class="people">共{{ item.study_num }}人学习</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
- <div class="button">去看看</div>
|
|
|
|
|
|
+ <div class="button" @click="look">去看看</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@@ -117,6 +153,113 @@ const route = useRoute();
|
|
const videoinfo = reactive({
|
|
const videoinfo = reactive({
|
|
info: {},
|
|
info: {},
|
|
});
|
|
});
|
|
|
|
+const total = ref(0);
|
|
|
|
+const page = ref(1);
|
|
|
|
+const imgList = reactive({
|
|
|
|
+ //banne图需要的数据
|
|
|
|
+ list: [],
|
|
|
|
+});
|
|
|
|
+const look = () => {
|
|
|
|
+ router.replace({
|
|
|
|
+ name: "video",
|
|
|
|
+ });
|
|
|
|
+};
|
|
|
|
+const toinfo = (id) => {
|
|
|
|
+ router.push({
|
|
|
|
+ name: "course",
|
|
|
|
+ query: {
|
|
|
|
+ id: id,
|
|
|
|
+ read: 0,
|
|
|
|
+ },
|
|
|
|
+ });
|
|
|
|
+};
|
|
|
|
+//分享
|
|
|
|
+const url = ref();
|
|
|
|
+const shareLink = async () => {
|
|
|
|
+ url.value =
|
|
|
|
+ "https://www.yixiangvr.com/web/#/course?" +
|
|
|
|
+ "id=" +
|
|
|
|
+ route.query.id +
|
|
|
|
+ "&read=" +
|
|
|
|
+ 0;
|
|
|
|
+ try {
|
|
|
|
+ await navigator.clipboard.writeText(url.value);
|
|
|
|
+ alert("链接已复制到剪贴板");
|
|
|
|
+ } catch (err) {
|
|
|
|
+ alert("复制链接失败");
|
|
|
|
+ }
|
|
|
|
+};
|
|
|
|
+//点赞
|
|
|
|
+const is_like = ref(0);
|
|
|
|
+const like = () => {
|
|
|
|
+ if (is_like.value == 0) {
|
|
|
|
+ } else {
|
|
|
|
+ // is_like.value = 0
|
|
|
|
+ likea();
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+};
|
|
|
|
+//收藏
|
|
|
|
+const is_collect = ref(0);
|
|
|
|
+const collect = () => {
|
|
|
|
+ if (is_collect.value == 0) {
|
|
|
|
+ collectdel();
|
|
|
|
+
|
|
|
|
+ } else {
|
|
|
|
+ collectadd();
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+};
|
|
|
|
+//收藏接口
|
|
|
|
+const collectadd = async () => {
|
|
|
|
+ try {
|
|
|
|
+ const { data } = await videoAPi.collect({
|
|
|
|
+ video_id: route.query.id,
|
|
|
|
+ });
|
|
|
|
+ is_collect.value = 0;
|
|
|
|
+ course_video()
|
|
|
|
+ } catch (error) {}
|
|
|
|
+};
|
|
|
|
+//点赞接口
|
|
|
|
+const likea = async () => {
|
|
|
|
+ try {
|
|
|
|
+ const { data } = await videoAPi.like({
|
|
|
|
+ video_id: route.query.id,
|
|
|
|
+ });
|
|
|
|
+ is_like.value = 0;
|
|
|
|
+ course_video()
|
|
|
|
+ } catch (error) {}
|
|
|
|
+};
|
|
|
|
+//删除收藏
|
|
|
|
+const collectdel = async () => {
|
|
|
|
+ try {
|
|
|
|
+ const { data } = await videoAPi.collectdel({
|
|
|
|
+ id: route.query.id,
|
|
|
|
+ });
|
|
|
|
+ is_collect.value = 1;
|
|
|
|
+ course_video()
|
|
|
|
+ } catch (error) {}
|
|
|
|
+};
|
|
|
|
+//视频详情
|
|
|
|
+const course_video = async () => {
|
|
|
|
+ try {
|
|
|
|
+ const { data } = await videoAPi.course_video({
|
|
|
|
+ id: route.query.id,
|
|
|
|
+ });
|
|
|
|
+ videoinfo.info = data;
|
|
|
|
+ is_like.value = data.is_like;
|
|
|
|
+ is_collect.value = data.is_collect;
|
|
|
|
+ } catch (error) {}
|
|
|
|
+};
|
|
|
|
+onMounted(course_video);
|
|
|
|
+//课程列表
|
|
|
|
+const list = async () => {
|
|
|
|
+ try {
|
|
|
|
+ const { data } = await videoAPi.list({});
|
|
|
|
+ imgList.list = data.data;
|
|
|
|
+ } catch (error) {}
|
|
|
|
+};
|
|
|
|
+onMounted(list);
|
|
//判断是否登录
|
|
//判断是否登录
|
|
const islogin = ref(false);
|
|
const islogin = ref(false);
|
|
if (localStorage.getItem("access_token")) {
|
|
if (localStorage.getItem("access_token")) {
|
|
@@ -136,19 +279,10 @@ const comment = async () => {
|
|
video_id: route.query.id,
|
|
video_id: route.query.id,
|
|
course_id: videoinfo.info.course.id,
|
|
course_id: videoinfo.info.course.id,
|
|
});
|
|
});
|
|
|
|
+ textarea.value = "";
|
|
comment_list();
|
|
comment_list();
|
|
} catch (error) {}
|
|
} catch (error) {}
|
|
};
|
|
};
|
|
-//视频详情
|
|
|
|
-const course_video = async () => {
|
|
|
|
- try {
|
|
|
|
- const { data } = await videoAPi.course_video({
|
|
|
|
- id: route.query.id,
|
|
|
|
- });
|
|
|
|
- videoinfo.info = data;
|
|
|
|
- } catch (error) {}
|
|
|
|
-};
|
|
|
|
-onMounted(course_video);
|
|
|
|
const commentList = reactive({
|
|
const commentList = reactive({
|
|
list: [],
|
|
list: [],
|
|
});
|
|
});
|
|
@@ -156,14 +290,22 @@ const commentList = reactive({
|
|
const comment_list = async () => {
|
|
const comment_list = async () => {
|
|
try {
|
|
try {
|
|
const { data } = await videoAPi.comment_list({
|
|
const { data } = await videoAPi.comment_list({
|
|
- course_id: route.query.id,
|
|
|
|
|
|
+ video_id: route.query.id,
|
|
|
|
+ page: page.value,
|
|
|
|
+ limit: 5,
|
|
});
|
|
});
|
|
commentList.list = data.data;
|
|
commentList.list = data.data;
|
|
|
|
+ total.value = data.total;
|
|
} catch (error) {}
|
|
} catch (error) {}
|
|
};
|
|
};
|
|
onMounted(comment_list);
|
|
onMounted(comment_list);
|
|
|
|
|
|
-onMounted(() => {});
|
|
|
|
|
|
+const handleSizeChange = (val) => {};
|
|
|
|
+const handleCurrentChange = (val) => {
|
|
|
|
+ page.value = val;
|
|
|
|
+ comment_list();
|
|
|
|
+ console.log(`current page: ${val}`);
|
|
|
|
+};
|
|
|
|
|
|
const read = ref(0);
|
|
const read = ref(0);
|
|
let intervalId = ref();
|
|
let intervalId = ref();
|
|
@@ -178,32 +320,23 @@ const onVideoEnded = () => {
|
|
//可在这里做视频播放结束后的处理,比如跳转新页面、显示弹框等
|
|
//可在这里做视频播放结束后的处理,比如跳转新页面、显示弹框等
|
|
};
|
|
};
|
|
// 当前播放时间
|
|
// 当前播放时间
|
|
-const timeStamp = ref("");
|
|
|
|
|
|
+const timeStamp = ref(0);
|
|
|
|
+timeStamp.value = route.query.time;
|
|
const allTime = ref("");
|
|
const allTime = ref("");
|
|
const currentTime = ref("");
|
|
const currentTime = ref("");
|
|
//timeUpdate
|
|
//timeUpdate
|
|
-const timeUpdate = (e) => {
|
|
|
|
|
|
+
|
|
|
|
+const time = () => {
|
|
intervalId.value = setInterval(() => {
|
|
intervalId.value = setInterval(() => {
|
|
- //获取当前播放时间 duration
|
|
|
|
- // if (timeStamp.value != parseInt(e.target.currentTime)) {
|
|
|
|
- allTime.value = parseInt(e.target.duration); //视频总时长(秒)
|
|
|
|
- //对播放的时间进行整
|
|
|
|
- timeStamp.value = parseInt(e.target.currentTime); //播放进度 (秒)
|
|
|
|
- // this.biNum = Math.floor((this.timeStamp / this.allTime) * 10000) / 100; //暂时没用到
|
|
|
|
- currentTime.value = e.target.currentTime;
|
|
|
|
- // }
|
|
|
|
study_record();
|
|
study_record();
|
|
- }, 4000);
|
|
|
|
|
|
+ }, 7000);
|
|
};
|
|
};
|
|
-const study_record = async () => {
|
|
|
|
- try {
|
|
|
|
- const { data } = await videoAPi.study_record({
|
|
|
|
- video_id: route.query.id,
|
|
|
|
- total_duration: allTime.value,
|
|
|
|
- duration: timeStamp.value,
|
|
|
|
- });
|
|
|
|
- } catch (error) {}
|
|
|
|
|
|
+const timeUpdate = (e) => {
|
|
|
|
+ allTime.value = parseInt(e.target.duration);
|
|
|
|
+ timeStamp.value = parseInt(e.target.currentTime);
|
|
|
|
+ currentTime.value = e.target.currentTime;
|
|
};
|
|
};
|
|
|
|
+
|
|
//返回课程
|
|
//返回课程
|
|
const returna = () => {
|
|
const returna = () => {
|
|
router.replace({
|
|
router.replace({
|
|
@@ -408,7 +541,7 @@ const returna = () => {
|
|
align-items: center;
|
|
align-items: center;
|
|
}
|
|
}
|
|
.videobox {
|
|
.videobox {
|
|
- width: 1920px;
|
|
|
|
|
|
+ width: 100%;
|
|
height: 740px;
|
|
height: 740px;
|
|
background: #111111;
|
|
background: #111111;
|
|
backdrop-filter: blur(10px);
|
|
backdrop-filter: blur(10px);
|