mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/learning-system-portal.git
synced 2025-12-12 12:26:44 +08:00
ai视频一期功能提交
This commit is contained in:
@@ -780,21 +780,29 @@
|
||||
title="点击进入他的主页"
|
||||
>
|
||||
<!-- <div class="teacher-text" v-if="item.authorInfo.avatar == ''">{{userAvatarText(item.teacherName)}}</div> -->
|
||||
<div v-if="item.authorInfo.avatar !== ''">
|
||||
<div v-if="item.authorInfo && item.authorInfo.avatar">
|
||||
<el-avatar
|
||||
:src="fileBaseUrl + item.authorInfo.avatar"
|
||||
shape="circle"
|
||||
:size="50"
|
||||
></el-avatar>
|
||||
</div>
|
||||
<div v-else class="teacher-text">
|
||||
<!-- <div v-else class="teacher-text">
|
||||
<div v-if="item.authorInfo.sex === 1">
|
||||
<img src="../../../public/images/Avatarman.png" alt="" />
|
||||
</div>
|
||||
<div v-else>
|
||||
<img src="../../../public/images/Avatarwoman.png" alt="" />
|
||||
</div>
|
||||
</div>-->
|
||||
<div v-else-if="item.photo">
|
||||
<el-avatar :src="item.photo" shape="circle" :size="50"></el-avatar>
|
||||
</div>
|
||||
<div v-else class="teacher-text">
|
||||
<div v-if="item.authorInfo && item.authorInfo.sex === 1"><img src="../../../public/images/Avatarwoman.png" alt=""></div>
|
||||
<div v-else><img src="../../../public/images/Avatarman.png" alt=""></div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="teacher-info">
|
||||
<div class="teacher-name">
|
||||
@@ -1177,8 +1185,6 @@ export default {
|
||||
let ctime = parseInt(nowDate.getTime() / 1000);
|
||||
let beforeUrl = parseInt(nowDate.getTime() / 1000) + "/" + fid;
|
||||
let urlSign = encodeURIComponent(encrypt(beforeUrl));
|
||||
console.log(fid, 'fid');
|
||||
console.log(u, 'u');
|
||||
cookies.set("PLAYSIGN_TIME", ctime); //写客户端的cookie保存
|
||||
//以下判断是为了区分本地环境和服务器环境
|
||||
if (process.env.NODE_ENV == "development") {
|
||||
@@ -1216,7 +1222,7 @@ export default {
|
||||
|
||||
if (r.contentType == 10 || r.contentType == 20) {
|
||||
this.trueFalse = true;
|
||||
if (r.content.startsWith("\{")) {
|
||||
if (r.content.startsWith("{")) {
|
||||
this.curriculumData = JSON.parse(r.content);
|
||||
} else {
|
||||
this.curriculumData.url = r.content;
|
||||
@@ -1273,7 +1279,7 @@ export default {
|
||||
});
|
||||
} else if (r.contentType == 52) {
|
||||
this.isAppendTime = false;
|
||||
if (r.content.startsWith("\{")) {
|
||||
if (r.content.startsWith("{")) {
|
||||
this.conLink = JSON.parse(r.content);
|
||||
} else {
|
||||
this.conLink.url = r.content;
|
||||
@@ -1453,7 +1459,6 @@ export default {
|
||||
}
|
||||
}
|
||||
}
|
||||
console.log(r, 'r');
|
||||
this.changePlayRes(r, item);
|
||||
},
|
||||
loadScorePraiseAndTrample() {
|
||||
@@ -2044,11 +2049,19 @@ export default {
|
||||
timedOut = true;
|
||||
xmlhttp.abort();
|
||||
}, 1000);
|
||||
xmlhttp.open(
|
||||
"HEAD",
|
||||
window.location.protocol + "//uapi.boe.com.cn/500.html",
|
||||
true
|
||||
);
|
||||
// 1. 拼接随机参数(时间戳+随机数,确保URL唯一,破缓存)
|
||||
const url =
|
||||
window.location.protocol +
|
||||
"//uapi.boe.com.cn/500.html?t=" +
|
||||
Date.now() +
|
||||
Math.random();
|
||||
// // 2. 打开 HEAD 请求(URL已带随机参数)
|
||||
xmlhttp.open("HEAD", url, true);
|
||||
// xmlhttp.open(
|
||||
// "HEAD",
|
||||
// window.location.protocol + "//uapi.boe.com.cn/500.html",
|
||||
// true
|
||||
// );
|
||||
xmlhttp.send();
|
||||
xmlhttp.onreadystatechange = function () {
|
||||
if (xmlhttp.readyState == 4) {
|
||||
|
||||
Reference in New Issue
Block a user