|
|
|
@ -157,8 +157,8 @@ |
|
|
|
|
<div class="tab-content"> |
|
|
|
|
<div v-if="active === 1" |
|
|
|
|
class="page"> |
|
|
|
|
<p class="intro" |
|
|
|
|
v-html="briefIntroduction"></p> |
|
|
|
|
<div class="des" |
|
|
|
|
v-html="briefIntroduction"></div> |
|
|
|
|
</div> |
|
|
|
|
<div v-if="active === 2" |
|
|
|
|
class="page"> |
|
|
|
@ -208,15 +208,13 @@ |
|
|
|
|
:key="i"> |
|
|
|
|
<p class="sign">{{ item.createTime }}</p> |
|
|
|
|
<div class="ver"> |
|
|
|
|
<div> |
|
|
|
|
{{ item.noteName }} |
|
|
|
|
<span class="action"> |
|
|
|
|
<i class="el-icon-edit-outline" |
|
|
|
|
@click="editNote(item)"></i> |
|
|
|
|
<i class="el-icon-delete" |
|
|
|
|
@click="delNote(item)"></i> |
|
|
|
|
</span> |
|
|
|
|
</div> |
|
|
|
|
{{ item.noteName }} |
|
|
|
|
<span class="action"> |
|
|
|
|
<i class="el-icon-edit-outline" |
|
|
|
|
@click="editNote(item)"></i> |
|
|
|
|
<i class="el-icon-delete" |
|
|
|
|
@click="delNote(item)"></i> |
|
|
|
|
</span> |
|
|
|
|
</div> |
|
|
|
|
<div class="des" |
|
|
|
|
v-html="item.noteContent"></div> |
|
|
|
@ -256,7 +254,7 @@ |
|
|
|
|
<i class="icon el-icon-chat-dot-square" |
|
|
|
|
@click="showReplay(item)"></i> |
|
|
|
|
<!-- 当前用户是管理员 || 当前用户的account==该条评论的创建人accountId --> |
|
|
|
|
<i v-if="item.currentRoleName.includes('管理员') || item.currentAccountId == item.createAccountId" |
|
|
|
|
<i v-if="(item.currentRoleName && item.currentRoleName.includes('管理员')) || item.currentAccountId == item.createAccountId" |
|
|
|
|
class="icon el-icon-delete" |
|
|
|
|
@click="delComment(item)"></i> |
|
|
|
|
<!-- <div class="like-wrap" |
|
|
|
@ -310,7 +308,7 @@ |
|
|
|
|
<i class="icon el-icon-chat-dot-square" |
|
|
|
|
@click="showReplay(reply)"></i> |
|
|
|
|
<!-- 当前用户是管理员 || 当前用户的account==该条评论的创建人accountId --> |
|
|
|
|
<i v-if="reply.currentRoleName.includes('管理员') || reply.currentAccountId == reply.createAccountId" |
|
|
|
|
<i v-if="(reply.currentRoleName && reply.currentRoleName.includes('管理员')) || reply.currentAccountId == reply.createAccountId" |
|
|
|
|
class="icon el-icon-delete" |
|
|
|
|
@click="delComment(reply)"></i> |
|
|
|
|
<!-- <div class="like-wrap" |
|
|
|
@ -578,11 +576,11 @@ export default { |
|
|
|
|
// 查询是否过期 |
|
|
|
|
getStatus () { |
|
|
|
|
this.$get(this.api.whetherToRenewTheFee, { |
|
|
|
|
cid: this.courseId |
|
|
|
|
mallId: this.mallId |
|
|
|
|
}).then(({ isRenew }) => { |
|
|
|
|
// 1正常显示资源,0显示续费 |
|
|
|
|
this.overdue = isRenew |
|
|
|
|
this.getChapter(1) |
|
|
|
|
this.getChapter() |
|
|
|
|
this.getProgress() |
|
|
|
|
}).catch(res => { }) |
|
|
|
|
}, |
|
|
|
@ -679,7 +677,6 @@ export default { |
|
|
|
|
this.$nextTick(async () => { |
|
|
|
|
if (this.curReplyId) { |
|
|
|
|
const el = document.querySelector('#comment' + this.curReplyId) |
|
|
|
|
console.log("🚀 ~ file: index.vue:681 ~ this.$nextTick ~ el:", el) |
|
|
|
|
el && el.scrollIntoView(false) |
|
|
|
|
} |
|
|
|
|
if (this.commentId) { |
|
|
|
@ -971,9 +968,7 @@ export default { |
|
|
|
|
let userName = window.btoa(encodeURIComponent(this.userName)); |
|
|
|
|
if (systemId == 11) { |
|
|
|
|
// 银行系统 |
|
|
|
|
sessionStorage.removeItem('projectId') |
|
|
|
|
sessionStorage.removeItem('submited') |
|
|
|
|
location.href = `${Setting.systemPath}/#/index/list?curriculumName=${this.curriculumName}&token=${token}&cid=${this.courseId}&systemId=${this.systemIds}&projectId=${this.curProject}&assessmentId=&classId=&stopTime=&test=true` |
|
|
|
|
location.href = `${Setting.systemPath}/#/index/list?curriculumName=${this.curriculumName}&token=${token}&cid=${this.courseId}&mallId=${this.mallId}&systemId=${this.systemIds}&projectId=${this.curProject}&assessmentId=&classId=&stopTime=&test=true` |
|
|
|
|
} else if (systemId == 12) { |
|
|
|
|
// 众筹系统 |
|
|
|
|
window.open(`http://120.78.139.126:8879?systemId=${systemId}&courseId=${this.courseId}&projectId=${this.curProject}&token=${token}&userId=${this.userId}&classId=1`); |
|
|
|
@ -1001,10 +996,12 @@ $height: 700px; |
|
|
|
|
border: 0; |
|
|
|
|
} |
|
|
|
|
.page { |
|
|
|
|
.intro { |
|
|
|
|
font-size: 14px; |
|
|
|
|
color: #333; |
|
|
|
|
line-height: 24px; |
|
|
|
|
/deep/.des { |
|
|
|
|
div, |
|
|
|
|
p, |
|
|
|
|
span { |
|
|
|
|
font-family: PingFangSC-Regular !important; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.l-title { |
|
|
|
|