alioss
yujialong 2 years ago
parent 3dae9d9b85
commit 355ab62c19
  1. 5
      src/api/index.js
  2. 325
      src/layouts/header/index.vue
  3. 41
      src/pages/activity/list/index.vue
  4. 12
      src/pages/activity/manage/list/index.vue
  5. 245
      src/pages/station/preview/index.vue
  6. 4
      src/setting.js
  7. 6
      src/styles/page/station.scss

@ -33,6 +33,7 @@ export default {
findLearningProgress: 'nakadai/nakadai/curriculum/learning/progressprogress/findById', findLearningProgress: 'nakadai/nakadai/curriculum/learning/progressprogress/findById',
saveLearningProgress: 'nakadai/nakadai/curriculum/learning/progressprogress/save', saveLearningProgress: 'nakadai/nakadai/curriculum/learning/progressprogress/save',
updateLearningProgress: 'nakadai/nakadai/curriculum/learning/progressprogress/update', updateLearningProgress: 'nakadai/nakadai/curriculum/learning/progressprogress/update',
maximumPracticeScoreList: 'occupationlab/occupationlab/achievement/maximumPracticeScoreList',
// 课程笔记 // 课程笔记
addNote: `nakadai/curriculumNotes/addNote`, addNote: `nakadai/curriculumNotes/addNote`,
@ -46,6 +47,8 @@ export default {
deleteAComment: `nakadai/comment/deleteAComment`, deleteAComment: `nakadai/comment/deleteAComment`,
commentAndLike: `nakadai/commentLike/commentAndLike`, commentAndLike: `nakadai/commentLike/commentAndLike`,
unlike: `nakadai/commentLike/unlike`, unlike: `nakadai/commentLike/unlike`,
messageNotificationList: `nakadai/notify/messageNotificationList`,
noticeRead: `nakadai/notify/noticeRead`,
// 能力测评 // 能力测评
canExperiment: `occupationlab/occupationlab/evaluationrecord/can_experiment`, // 查询是否能够开启实验 canExperiment: `occupationlab/occupationlab/evaluationrecord/can_experiment`, // 查询是否能够开启实验
@ -166,6 +169,8 @@ export default {
findActivityAnnouncement: `occupationlab/occupationlab/activity/announcement/queryAnnouncementDetails`, findActivityAnnouncement: `occupationlab/occupationlab/activity/announcement/queryAnnouncementDetails`,
delActivityAnnouncementAnnex: `occupationlab/occupationlab/activity/announcement/annex/delete`, delActivityAnnouncementAnnex: `occupationlab/occupationlab/activity/announcement/annex/delete`,
saveActivityAnnouncementAnnex: `occupationlab/occupationlab/activity/announcement/annex/save`, saveActivityAnnouncementAnnex: `occupationlab/occupationlab/activity/announcement/annex/save`,
collectionActivity: `occupationlab/occupationlab/activity/collectionActivity`,
concernedActivity: `occupationlab/occupationlab/activity/concernedActivity`,
// 阿里云文件/视频管理 // 阿里云文件/视频管理
fileDeletion: `${uploadURL}oss/manage/fileDeletion`, // 删除OSS文件 fileDeletion: `${uploadURL}oss/manage/fileDeletion`, // 删除OSS文件

@ -1,41 +1,69 @@
<template> <template>
<div class="header"> <div class="header">
<a class="logo" @click="toIndex"> <a class="logo"
<template v-if="isIndex"> @click="toIndex">
<img v-if="!isZxy" src="@/assets/img/logo.png" alt=""> <template v-if="isIndex">
<img v-else src="@/assets/img/zxy/logo.png" alt=""> <img v-if="!isZxy"
</template> src="@/assets/img/logo.png"
<template v-else> alt="">
<img :src="logoUrl" height="50" /> <img v-else
<span class="title">{{title}}</span> src="@/assets/img/zxy/logo.png"
</template> alt="">
</a> </template>
<div class="inner"> <template v-else>
<navbar class="nav-wrap" ref="nav"></navbar> <img :src="logoUrl"
<div class="right"> height="50" />
<template v-if="token || serverToken"> <span class="title">{{title}}</span>
<div class="user-wrap"> </template>
<el-dropdown size="medium" @command="menuChange"> </a>
<div class="user"> <div class="inner">
<el-avatar :size="35" :src="avatar"></el-avatar> <navbar class="nav-wrap"
<span class="username">{{ customerName || cName || userName }}</span> ref="nav"></navbar>
</div>
<el-dropdown-menu slot="dropdown"> <div class="right">
<el-dropdown-item v-if="isIndex" command="index">前往{{ serverToken ? '教学' : '学习' }}</el-dropdown-item> <template v-if="token || serverToken">
<el-dropdown-item v-if="!customerName && !serverToken" command="info">个人中心</el-dropdown-item> <el-popover placement="top"
<el-dropdown-item command="logout">退出登录</el-dropdown-item> :disabled="!notices.length">
</el-dropdown-menu> <p v-for="(item, i) in notices"
</el-dropdown> :key="i"
</div> class="p-v-5 cursor-pointer"
</template> @click="toComment(item)">{{ item.commentUsername }} 回复了你的评论</p>
<div v-else class="login" @click="toNew('/login')"> <el-badge class="msg"
<img src="@/assets/img/user.png" alt=""> :is-dot="notices.length"
<span>登录</span> slot="reference">消息</el-badge>
</el-popover>
<div class="user-wrap">
<el-dropdown size="medium"
@command="menuChange">
<div class="user">
<el-avatar :size="35"
:src="avatar"></el-avatar>
<span class="username">{{ customerName || cName || userName }}</span>
</div> </div>
<el-button v-if="isZxy && isIndex" class="trial" type="primary" @click="toTrial">免费试用</el-button> <el-dropdown-menu slot="dropdown">
</div> <el-dropdown-item v-if="isIndex"
command="index">前往{{ serverToken ? '教学' : '学习' }}</el-dropdown-item>
<el-dropdown-item v-if="!customerName && !serverToken"
command="info">个人中心</el-dropdown-item>
<el-dropdown-item command="logout">退出登录</el-dropdown-item>
</el-dropdown-menu>
</el-dropdown>
</div>
</template>
<div v-else
class="login"
@click="toNew('/login')">
<img src="@/assets/img/user.png"
alt="">
<span>登录</span>
</div> </div>
<el-button v-if="isZxy && isIndex"
class="trial"
type="primary"
@click="toTrial">免费试用</el-button>
</div>
</div> </div>
</div>
</template> </template>
<script> <script>
import { mapState, mapMutations, mapActions } from "vuex"; import { mapState, mapMutations, mapActions } from "vuex";
@ -44,101 +72,124 @@ import util from "@/libs/util";
import navbar from "../navbar"; import navbar from "../navbar";
import axios from 'axios' import axios from 'axios'
export default { export default {
data() { data () {
return { return {
token: util.local.get(Setting.tokenKey), // token token: util.local.get(Setting.tokenKey), // token
serverToken: util.local.get('oc_server_token'), // token serverToken: util.local.get('oc_server_token'), // token
cName: util.cookies.get('customerName'), cName: util.cookies.get('customerName'),
isIndex: Setting.whiteList.find(e => e === this.$route.path), // isIndex: Setting.whiteList.find(e => e === this.$route.path), //
isZxy: Setting.isZxy isZxy: Setting.isZxy,
}; notices: [],
noticeTimer: null
};
},
components: {
navbar
},
computed: {
...mapState("user", [
"title", "logoUrl", "avatar", "userName", 'customerName'
])
},
mounted () {
if (this.token) {
this.getSystemDetail();
this.getUserInfo();
this.getNotice()
}
this.$once('hook:beforeDestroy', function () {
clearInterval(this.noticeTimer)
})
},
methods: {
...mapMutations("user", [
'SET_CUSTOMERNAME', 'setUserId'
]),
...mapActions("user", [
"logout", "setTitle", "setLogoUrl", "setAvatar", "setUserName"
]),
// logo
getSystemDetail () {
this.$get(this.api.logoDetail).then(({ data }) => {
if (data) {
this.setTitle(data.title);
this.setLogoUrl(data.logoUrl);
}
}).catch(res => { });
},
//
getNotice () {
if (!Setting.isDev) {
this.noticeTimer = setInterval(() => {
this.$get(this.api.messageNotificationList, {
type: 2
}).then(res => {
this.notices = res.notificationList
}).catch(res => { });
}, 1000)
}
}, },
components: { //
navbar toComment (item) {
this.$router.push(`/station/preview?courseId=${item.cid}&commentId=${item.commentId}&notifyId=${item.notifyId}`)
}, },
computed: { //
...mapState("user", [ getUserInfo () {
"title", "logoUrl", "avatar", "userName", 'customerName' this.$get(this.api.queryUserInfoDetails).then(res => {
]) const { userAvatars, userName, userId } = res.result.hrUserInfo || {}
userAvatars && this.setAvatar(userAvatars);
this.setUserId(userId)
this.setUserName(userName);
if (!userName && !this.customerName) {
this.$get(this.api.isClient).then(res => {
res.customerName && this.SET_CUSTOMERNAME(res.customerName)
}).catch(res => { })
}
}).catch(err => { })
}, },
mounted() { //
if (this.token) { menuChange (e) {
this.getSystemDetail(); if (e === 'index') {
this.getUserInfo(); this.toNew('/station')
} else if (e === 'info') {
window.open(this.$router.resolve('/setting/person').href)
} else if (e === 'logout') {
this.logout()
} }
}, },
methods: { //
...mapMutations("user", [ toIndex () {
'SET_CUSTOMERNAME', 'setUserId' this.$refs.nav.jump({
]), index: this.isIndex ? '/index/list' : '/station/list'
...mapActions("user", [ })
"logout", "setTitle", "setLogoUrl", "setAvatar", "setUserName" },
]), // tab
// logo toNew (path) {
getSystemDetail () { //
this.$get(this.api.logoDetail).then(({ data }) => { if (util.cookies.get('serverLogin') === 'true' && util.local.get('oc_server_token')) {
if (data) { const defaultPath = '/station/list' //
this.setTitle(data.title); //
this.setLogoUrl(data.logoUrl); axios.get(`${this.api.getUserRolesPermissionMenu}?platformId=1`, {
} headers: {
}).catch(res => {}); token: this.serverToken
},
//
getUserInfo() {
this.$get(this.api.queryUserInfoDetails).then(res => {
const {userAvatars, userName, userId} = res.result.hrUserInfo || {}
userAvatars && this.setAvatar(userAvatars);
this.setUserId(userId)
this.setUserName(userName);
if (!userName && !this.customerName) {
this.$get(this.api.isClient).then(res => {
res.customerName && this.SET_CUSTOMERNAME(res.customerName)
}).catch(res => {})
}
}).catch(err => {})
},
//
menuChange(e) {
if (e === 'index') {
this.toNew('/station')
} else if (e === 'info') {
window.open(this.$router.resolve('/setting/person').href)
} else if (e === 'logout') {
this.logout()
}
},
//
toIndex() {
this.$refs.nav.jump({
index: this.isIndex ? '/index/list' : '/station/list'
})
},
// tab
toNew(path) {
//
if (util.cookies.get('serverLogin') === 'true' && util.local.get('oc_server_token')) {
const defaultPath = '/station/list' //
//
axios.get(`${this.api.getUserRolesPermissionMenu}?platformId=1`, {
headers: {
token: this.serverToken
}
}).then(({ data }) => {
const list = data.permissionMenu[0].children
const route = list.find(e => e.path === defaultPath) ? defaultPath : list[0].path //
window.open(process.env.NODE_ENV === 'development' ?
`http://192.168.31.125:8081/#${route}` :
`${location.origin}/admin/#${route}`)
}).catch(err => {})
} else {
window.open(this.$router.resolve(path).href)
} }
}, }).then(({ data }) => {
// const list = data.permissionMenu[0].children
toTrial() { const route = list.find(e => e.path === defaultPath) ? defaultPath : list[0].path //
window.open('https://www.wjx.top/vm/wFCPCFp.aspx') window.open(process.env.NODE_ENV === 'development' ?
}, `http://192.168.31.125:8081/#${route}` :
} `${location.origin}/admin/#${route}`)
}).catch(err => { })
} else {
window.open(this.$router.resolve(path).href)
}
},
//
toTrial () {
window.open('https://www.wjx.top/vm/wFCPCFp.aspx')
},
}
}; };
</script> </script>
<style scoped lang="scss"> <style scoped lang="scss">
@ -153,7 +204,7 @@ $height: 64px;
height: $height; height: $height;
background-color: #fff; background-color: #fff;
box-shadow: 0px 0px 6px 0px rgba(178, 178, 178, 0.32); box-shadow: 0px 0px 6px 0px rgba(178, 178, 178, 0.32);
.inner{ .inner {
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
align-items: center; align-items: center;
@ -161,14 +212,14 @@ $height: 64px;
padding: 0 80px 0 10px; padding: 0 80px 0 10px;
margin: 0 auto; margin: 0 auto;
} }
.logo{ .logo {
position: absolute; position: absolute;
top: 0; top: 0;
left: 40px; left: 40px;
display: flex; display: flex;
align-items: center; align-items: center;
font-size: 28px; font-size: 28px;
color: #568DF2; color: #568df2;
height: $height; height: $height;
cursor: pointer; cursor: pointer;
img { img {
@ -183,8 +234,12 @@ $height: 64px;
height: 64px; height: 64px;
} }
.right { .right {
display: inline-flex; display: inline-flex;
align-items: center; align-items: center;
}
.msg {
margin-right: 30px;
cursor: pointer;
} }
.user-wrap { .user-wrap {
display: inline-flex; display: inline-flex;
@ -199,7 +254,7 @@ $height: 64px;
width: 2px; width: 2px;
height: 15px; height: 15px;
margin-left: 15px; margin-left: 15px;
background-color: #D8D8D8; background-color: #d8d8d8;
} }
.username { .username {
margin-left: 10px; margin-left: 10px;
@ -211,22 +266,22 @@ $height: 64px;
color: #666; color: #666;
cursor: pointer; cursor: pointer;
} }
.login{ .login {
display: inline-flex; display: inline-flex;
align-items: center; align-items: center;
cursor: pointer; cursor: pointer;
&:hover{ &:hover {
opacity: .9; opacity: 0.9;
} }
span{ span {
margin-left: 5px; margin-left: 5px;
color: #666; color: #666;
font-size: 14px; font-size: 14px;
} }
} }
.trial { .trial {
margin-left: 28px; margin-left: 28px;
border-radius: 6px; border-radius: 6px;
} }
} }
@media (max-width: 1680px) { @media (max-width: 1680px) {

@ -63,13 +63,17 @@
<span class="val">{{ item.initiator }}</span> <span class="val">{{ item.initiator }}</span>
</div> </div>
</template> </template>
<div class="m-t-20"> <div class="m-t-20"
<!-- <img src="@/assets/img/love1.png" @click.stop="follow(item)">
alt=""> --> <template v-if="item.collectionStatus">
<img class="m-r-5" <img class="m-r-5"
src="@/assets/img/love2.png" src="@/assets/img/love2.png"
alt="">
{{ item.collectorsNum }}人关注
</template>
<img v-else
src="@/assets/img/love1.png"
alt=""> alt="">
2人关注
</div> </div>
</div> </div>
</div> </div>
@ -208,22 +212,21 @@ export default {
]), ]),
getList () { getList () {
this.clearTimer() this.clearTimer()
const { form } = this
const data = { const data = {
pageNum: this.page, pageNum: this.page,
pageSize: this.pageSize, pageSize: this.pageSize,
platformSource: 2, platformSource: 2,
keyWords: this.keyword, keyWords: this.keyword,
...this.form ...form
} }
this.$post(this.api.schoolActivities, data).then(({ data }) => { if (form.whetherToSignUp) data.whetherToSignUp = ''
this.$post(this.api[form.whetherToSignUp ? 'concernedActivity' : 'schoolActivities'], data).then(({ data }) => {
const { records } = data const { records } = data
this.listData = records this.listData = records
this.totals = data.total this.totals = data.total
this.handleStatus() this.handleStatus()
// this.loadIns.close(); }).catch(res => { })
}).catch(res => {
// this.loadIns.close()
})
}, },
// //
handleStatus () { handleStatus () {
@ -281,10 +284,10 @@ export default {
getData () { getData () {
// this.loadIns = Loading.service() // this.loadIns = Loading.service()
this.getList() this.getList()
// if (!Setting.isDev) { if (!Setting.isDev) {
clearInterval(this.redisTimer) clearInterval(this.redisTimer)
this.redisTimer = setInterval(this.getRedis, 1000) this.redisTimer = setInterval(this.getRedis, 1000)
// } }
}, },
initData () { initData () {
this.page = 1 this.page = 1
@ -320,6 +323,12 @@ export default {
this.page = val; this.page = val;
this.getData(); this.getData();
}, },
//
follow ({ id, collectionStatus }) {
this.$post(`${this.api.collectionActivity}?activityId=${id}&state=${collectionStatus ? 0 : 1}`).then(res => {
this.getData()
}).catch(res => { })
},
// //
signupSubmit () { signupSubmit () {

@ -1,5 +1,7 @@
<template> <template>
<div class="wrap"> <div class="wrap">
<breadcrumb ref="breadcrumb"
data="创业互动/我的项目"></breadcrumb>
<div class="page"> <div class="page">
<h6 class="p-title">筛选</h6> <h6 class="p-title">筛选</h6>
<div class="tool mul"> <div class="tool mul">
@ -152,7 +154,9 @@ import util from "@/libs/util";
import Setting from "@/setting"; import Setting from "@/setting";
import { mapMutations } from "vuex"; import { mapMutations } from "vuex";
import { Loading } from 'element-ui' import { Loading } from 'element-ui'
import breadcrumb from '@/components/breadcrumb'
export default { export default {
components: { breadcrumb },
data () { data () {
return { return {
timer: null, timer: null,
@ -326,10 +330,10 @@ export default {
}, },
getData () { getData () {
this.getList() this.getList()
// if (!Setting.isDev) { if (!Setting.isDev) {
clearInterval(this.redisTimer) clearInterval(this.redisTimer)
this.redisTimer = setInterval(this.getRedis, 1000) this.redisTimer = setInterval(this.getRedis, 1000)
// } }
}, },
add () { add () {
this.$router.push("add"); this.$router.push("add");

@ -1,6 +1,7 @@
<template> <template>
<div class="wrap"> <div class="wrap">
<breadcrumb :data="'实验台/' + curriculumName"></breadcrumb> <breadcrumb ref="breadcrumb"
:data="'实验台/' + courseName"></breadcrumb>
<div class="flex"> <div class="flex">
<div class="cover" <div class="cover"
:class="{'is-word': showMask1}"> :class="{'is-word': showMask1}">
@ -152,15 +153,15 @@
:class="{active: item.id == active}" :class="{active: item.id == active}"
@click="tabChange(item)">{{ item.name }}</a> @click="tabChange(item)">{{ item.name }}</a>
</div> </div>
<div class="tab-content"> <div class="flex">
<template v-if="active === 1"> <div class="tab-content">
<div class="page"> <div v-if="active === 1"
class="page">
<p class="intro" <p class="intro"
v-html="briefIntroduction"></p> v-html="briefIntroduction"></p>
</div> </div>
</template> <div v-if="active === 2"
<template v-if="active === 2"> class="page">
<div class="page">
<template v-if="showNoteAdd"> <template v-if="showNoteAdd">
<el-form class="form" <el-form class="form"
ref="form" ref="form"
@ -223,9 +224,8 @@
</el-timeline> </el-timeline>
</template> </template>
</div> </div>
</template> <div v-if="active === 4"
<template v-if="active === 4"> class="page">
<div class="page">
<quill ref="quill" <quill ref="quill"
:border="true" :border="true"
v-model="comment" v-model="comment"
@ -238,9 +238,10 @@
</div> </div>
<ul class="msg"> <ul class="msg">
<li v-for="(item, i) in comments" <li v-for="(item, i) in comments"
:key="i"> :key="i"
:id="'comment' + item.commentId">
<div class="li-wrap"> <div class="li-wrap">
<img :src="item.avatar" <img :src="item.createUserAvatars"
alt="" alt=""
class="avatar"> class="avatar">
<div class="texts"> <div class="texts">
@ -248,13 +249,14 @@
<span class="name">{{ item.createUsername }}</span> <span class="name">{{ item.createUsername }}</span>
发表于 {{ item.createTime }} 发表于 {{ item.createTime }}
</h6> </h6>
<div class="des" <div class="m-t-8"
v-html="item.content"></div> v-html="item.content"></div>
</div> </div>
<div class="action"> <div class="action">
<i class="icon el-icon-chat-dot-square" <i class="icon el-icon-chat-dot-square"
@click="showReplay(item)"></i> @click="showReplay(item)"></i>
<i class="icon el-icon-delete" <i v-if="deleteIdentity || item.currentAccountId == item.createAccountId"
class="icon el-icon-delete"
@click="delComment(item)"></i> @click="delComment(item)"></i>
<img v-if="item.isLike" <img v-if="item.isLike"
class="icon" class="icon"
@ -266,6 +268,7 @@
src="@/assets/img/like.png" src="@/assets/img/like.png"
alt="" alt=""
@click="like(item)"> @click="like(item)">
{{ item.likeCount || '' }}
</div> </div>
</div> </div>
<div class="reply" <div class="reply"
@ -283,32 +286,42 @@
<ul class="msg children" <ul class="msg children"
v-if="item.showChildren"> v-if="item.showChildren">
<li v-for="(reply,i) in item.children" <li v-for="(reply,i) in item.children"
:key="i"> :key="i"
:id="'comment' + reply.commentId">
<div class="li-wrap"> <div class="li-wrap">
<img class="avatar" <img class="avatar"
:src="reply.avatar" :src="reply.createUserAvatars"
alt=""> alt="">
<div class="texts"> <div class="texts">
<div class="name">{{reply.createUsername}}</div> <div class="name">{{reply.createUsername}}</div>
<div class="des" <div class="flex m-v-8">
v-html="reply.content"></div> <template v-if="reply.showReplyName">
回复
<span class="reply-name">@{{ reply.replyUsername }}</span>
</template>
<div class="des"
v-html="reply.content"></div>
</div>
<div class="date">{{reply.createTime}}</div> <div class="date">{{reply.createTime}}</div>
</div> </div>
<div class="action"> <div class="action">
<i class="icon el-icon-chat-dot-square" <i class="icon el-icon-chat-dot-square"
@click="showReplay(reply)"></i> @click="showReplay(reply)"></i>
<i class="icon el-icon-delete" <i v-if="deleteIdentity || reply.currentAccountId == reply.createAccountId"
class="icon el-icon-delete"
@click="delComment(reply)"></i> @click="delComment(reply)"></i>
<img v-if="reply.isLike" <template v-if="reply.isLike">
class="icon" <img class="icon"
src="@/assets/img/like-up.png" src="@/assets/img/like-up.png"
alt="" alt=""
@click="like(reply)"> @click="like(item, reply)">
{{ reply.likeCount }}
</template>
<img v-else <img v-else
class="icon" class="icon"
src="@/assets/img/like.png" src="@/assets/img/like.png"
alt="" alt=""
@click="like(reply)"> @click="like(item, reply)">
</div> </div>
</div> </div>
<div class="reply" <div class="reply"
@ -325,12 +338,37 @@
</div> </div>
</li> </li>
</ul> </ul>
<div v-if="item.getCommentReplyNum" <div v-if="item.children"
class="toggle"><span @click="item.showChildren = !item.showChildren">{{item.showChildren ? '收起所有回复' : `查看所有${item.getCommentReplyNum}条回复`}} <i class="el-icon-arrow-down"></i></span></div> class="toggle"><span @click="item.showChildren = !item.showChildren">{{item.showChildren ? '收起所有回复' : `查看所有${item.children.length}条回复`}} <i class="el-icon-arrow-down"></i></span></div>
</li> </li>
</ul> </ul>
</div> </div>
</template> </div>
<div class="rank">
<el-select style="width: 100%"
v-model="archProject"
placeholder="请选择"
@change="getMaximumScore">
<el-option v-for="(item, i) in progressList"
:key="i"
:label="item.projectName"
:value="item.projectId"></el-option>
</el-select>
<div v-if="maximumScores.length"
class="arches">
<div v-for="(item, i) in maximumScores"
:key="i"
class="line">
<div>
<img :src="item.userAvatars"
alt=""
class="avatar">
<span class="name">{{ item.userName }}</span>
</div>
<span class="point">{{ item.highestScore }}</span>
</div>
</div>
</div>
</div> </div>
<el-dialog title="请选择项目" <el-dialog title="请选择项目"
@ -391,12 +429,14 @@ export default {
components: { pdf, breadcrumb, pdfDia, quill, Editor }, components: { pdf, breadcrumb, pdfDia, quill, Editor },
data () { data () {
return { return {
mallId: this.$route.query.mallId || '', mallId: '',
courseId: '',
curriculumName: '',
commentId: '', //
notifyId: '',
editorConfig, editorConfig,
startTime: Date.now(), // startTime: Date.now(), //
systemIds: '', systemIds: '',
courseId: +this.$route.query.courseId,
curriculumName: this.$route.query.curriculumName,
type: 1, type: 1,
video: "http://liuwanr.oss-cn-shenzhen.aliyuncs.com/mp4/20200519/1589871025648.mp4", video: "http://liuwanr.oss-cn-shenzhen.aliyuncs.com/mp4/20200519/1589871025648.mp4",
chapterList: [], // chapterList: [], //
@ -417,10 +457,10 @@ export default {
id: 2, id: 2,
name: '课程笔记' name: '课程笔记'
}, },
{ // {
id: 3, // id: 3,
name: '全国排行榜' // name: ''
}, // },
{ {
id: 4, id: 4,
name: '教学互动' name: '教学互动'
@ -465,6 +505,10 @@ export default {
}, },
comments: [], comments: [],
comment: '', comment: '',
deleteIdentity: false,
archProject: '',
curReplyId: '',
maximumScores: []
}; };
}, },
computed: { computed: {
@ -473,6 +517,17 @@ export default {
]) ])
}, },
watch: { watch: {
'$route': {
handler () {
this.mallId = this.$route.query.mallId || ''
this.courseId = +this.$route.query.courseId
this.curriculumName = this.$route.query.curriculumName
this.commentId = this.$route.query.commentId //
this.notifyId = this.$route.query.notifyId
this.init()
},
immediate: true
},
noteKeyword: function (val) { noteKeyword: function (val) {
clearTimeout(this.searchTimer); clearTimeout(this.searchTimer);
this.searchTimer = setTimeout(() => { this.searchTimer = setTimeout(() => {
@ -481,24 +536,7 @@ export default {
} }
}, },
mounted () { mounted () {
this.insertScript(); this.init()
this.getData();
this.addRecord()
this.getNote()
this.getComment()
var arr6 = [1, 2, [3, 4, [5, 6]]];
function flatten (arr) {
var result = [];
for (var i = 0; i < arr.length; i++) {
if (Array.isArray(arr[i])) {
result = result.concat(flatten(arr[i]))
} else {
result.push(arr[i]);
}
}
return result;
}
console.log(11, flatten(arr6))
}, },
destroyed () { destroyed () {
// //
@ -512,9 +550,17 @@ export default {
goBack () { goBack () {
this.$router.push('/station') this.$router.push('/station')
}, },
init () {
this.insertScript();
this.getData();
this.addRecord()
this.getNote()
this.getComment()
},
async getData () { async getData () {
let { data } = await this.$post(`${this.api.curriculumDetail}?cid=${this.courseId}&mallId=${this.mallId}`); let { data } = await this.$post(`${this.api.curriculumDetail}?cid=${this.courseId}&mallId=${this.mallId}`);
this.courseName = data.curriculumName; this.courseName = data.curriculumName;
this.$refs.breadcrumb.update('实验台/' + data.curriculumName)
// this.coverUrl = data.coverUrl; // this.coverUrl = data.coverUrl;
this.briefIntroduction = data.briefIntroduction; this.briefIntroduction = data.briefIntroduction;
this.teachingObjectives = data.teachingObjectives; this.teachingObjectives = data.teachingObjectives;
@ -541,17 +587,29 @@ export default {
async getChapter () { async getChapter () {
let res = await this.$get(`${this.api.curriculumChapter}/${this.courseId}`); let res = await this.$get(`${this.api.curriculumChapter}/${this.courseId}`);
this.chapterList = res.chapterList; this.chapterList = res.chapterList;
if (this.chapterList.length && this.chapterList[0].subsectionList && this.chapterList[0].subsectionList.length) { if (this.chapterList.length && this.chapterList[0].subsectionList && this.chapterList[0].subsectionList.length && !this.commentId) {
this.preview(this.chapterList[0].subsectionList[0], this.chapterList[0].name, 1); // this.preview(this.chapterList[0].subsectionList[0], this.chapterList[0].name, 1);
} }
}, },
// //
async getProgress () { async getProgress () {
let res = await this.$post(`${this.api.courseLearningProgress}?courseId=${this.courseId}&systemId=${this.systemIds}`); let res = await this.$post(`${this.api.courseLearningProgress}?courseId=${this.courseId}&systemId=${this.systemIds}`);
this.progressList = res.list this.progressList = res.list
if (res.list.length) this.archProject = res.list[0].projectId
this.maximumScores.length || this.getMaximumScore()
this.plan = res.plan this.plan = res.plan
this.schedule = +(res.schedule.replace('%', '')) this.schedule = +(res.schedule.replace('%', ''))
}, },
//
async getMaximumScore () {
let { message } = await this.$post(`${this.api.maximumPracticeScoreList}?projectId=${this.archProject}&pageNum=1&pageSize=1000`);
const list = message.records
list.forEach(e => {
if (!e.userAvatars) e.userAvatars = 'https://cube.elemecdn.com/3/7c/3ea6beec64369c2642b92c6726f1epng.png'
})
this.maximumScores = list
console.log("🚀 ~ file: index.vue:604 ~ getMaximumScore ~ this.maximumScores:", this.maximumScores)
},
// //
percentFormat (val) { percentFormat (val) {
return this.plan return this.plan
@ -612,21 +670,41 @@ export default {
this.$get(this.api.commentTreeList, { this.$get(this.api.commentTreeList, {
cid: this.courseId, cid: this.courseId,
}).then(res => { }).then(res => {
this.deleteIdentity = res.deleteIdentity
const list = res.rootComments const list = res.rootComments
this.handleComments(list) this.handleComments(list)
// console.log("🚀 ~ file: index.vue:590 ~ getComment ~ list:", list, l)
this.comments = list this.comments = list
this.$nextTick(async () => {
if (this.curReplyId) {
const el = document.querySelector('#comment' + this.curReplyId)
el && el.scrollIntoView(false)
}
if (this.commentId) {
this.active = 4
const el = document.getElementById('comment' + this.commentId)
el && el.scrollIntoView(false)
await this.$post(`${this.api.noticeRead}?isRead=1&notifyId=${this.notifyId}`) //
this.commentId = ''
}
})
}).catch(res => { }) }).catch(res => { })
}, },
// //
handleComments (list) { handleComments (list, parent = {}) {
list.forEach(e => { list.forEach((e, i) => {
if (!e.avatar) e.avatar = 'https://cube.elemecdn.com/3/7c/3ea6beec64369c2642b92c6726f1epng.png' if (!e.createUserAvatars) e.createUserAvatars = 'https://cube.elemecdn.com/3/7c/3ea6beec64369c2642b92c6726f1epng.png'
e.getCommentReplyNum = e.children && e.children.length
e.showChildren = false e.showChildren = false
if (e.commentId == this.commentId) parent.showChildren = true
if (e.commentId == this.curReplyId) e.showChildren = true
e.showReply = false e.showReply = false
e.replyContent = '' e.replyContent = ''
e.children && this.handleComments(e.children) if (e.children && e.children.length && parent.children) {
e.children.forEach(n => n.showReplyName = true)
// parent.children.splice(i, 0, ...e.children)
parent.children.push(...e.children)
console.log("🚀 ~ file: index.vue:705 ~ list.forEach ~ parent:", parent, e.children)
}
e.children && this.handleComments(e.children, parent.commentId ? parent : e)
}) })
}, },
// //
@ -651,16 +729,20 @@ export default {
this.$post(this.api.addComment, { this.$post(this.api.addComment, {
cid: this.courseId, cid: this.courseId,
content, content,
pid: row ? row.commentId : 0 pid: reply ? reply.commentId : row ? row.commentId : 0,
replyAccountId: reply ? reply.createAccountId : row.createAccountId || '',
status: row ? 2 : 1
}).then(res => { }).then(res => {
this.comment = '' this.comment = ''
this.curReplyId = row ? row.commentId : ''
this.getComment() this.getComment()
}).catch(res => { }) }).catch(res => { })
}, },
// //
like (row) { like (row, reply) {
this.$post(`${this.api[row.isLike ? 'unlike' : 'commentAndLike']}?commentId=${row.commentId}`).then(res => { this.$post(`${this.api[(reply ? reply.isLike : row.isLike) ? 'unlike' : 'commentAndLike']}?commentId=${reply ? reply.commentId : row.commentId}`).then(res => {
row.isLike = row.isLike ? 0 : 1 this.curReplyId = row.commentId
this.getComment()
}).catch(res => { }) }).catch(res => { })
}, },
@ -897,7 +979,7 @@ export default {
// python // python
this.toPython(this.curProject) this.toPython(this.curProject)
} }
} },
} }
}; };
</script> </script>
@ -913,7 +995,6 @@ $height: 700px;
border: 0; border: 0;
} }
.page { .page {
margin: 12px 0;
.intro { .intro {
font-size: 14px; font-size: 14px;
color: #333; color: #333;
@ -989,7 +1070,7 @@ $height: 700px;
margin-right: 10px; margin-right: 10px;
} }
&:hover { &:hover {
background-color: #528adf; background-color: #377be3;
} }
&.active { &.active {
background-color: $main-color; background-color: $main-color;
@ -1260,7 +1341,7 @@ $height: 700px;
.tabs { .tabs {
display: flex; display: flex;
align-items: center; align-items: center;
margin-top: 10px; margin: 10px 0;
.item { .item {
padding: 0 10px; padding: 0 10px;
margin-right: 16px; margin-right: 16px;
@ -1277,7 +1358,31 @@ $height: 700px;
} }
} }
.tab-content { .tab-content {
width: 80%; width: calc(100% - 308px);
}
.rank {
width: 296px;
padding: 20px;
margin-left: 12px;
background-color: #fff;
.arches {
margin-top: 20px;
}
.line {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 10px;
}
.avatar {
width: 35px;
height: 35px;
margin-right: 10px;
}
.point {
font-weight: 600;
color: #007eff;
}
} }
@media (max-width: 1430px) { @media (max-width: 1430px) {
.wrap { .wrap {

@ -28,8 +28,8 @@ if (isPro) {
uploadURL = `http://121.37.12.51/` uploadURL = `http://121.37.12.51/`
host = "http://121.37.12.51/"; // 测试服 host = "http://121.37.12.51/"; // 测试服
// host = 'https://www.occupationlab.com/' // 正式服 // host = 'https://www.occupationlab.com/' // 正式服
// host = "http://192.168.31.151:9000/"; // 榕 // host = "http://192.168.31.152:9000/"; // 榕
host = "http://192.168.31.53:9000/"; // 赓 // host = "http://192.168.31.53:9000/"; // 赓
} }
const Setting = { const Setting = {

@ -22,8 +22,8 @@
color: rgba(0, 0, 0, 0.85); color: rgba(0, 0, 0, 0.85);
font-size: 16px; font-size: 16px;
} }
.des { .reply-name {
margin: 8px 0; color: #007eff;
} }
.date { .date {
color: rgba(0, 0, 0, 0.45); color: rgba(0, 0, 0, 0.45);
@ -33,7 +33,7 @@
.action { .action {
display: inline-flex; display: inline-flex;
align-items: center; align-items: center;
margin-top: 15px; margin: 15px 10px 0 0;
.icon { .icon {
margin: 0 5px; margin: 0 5px;
color: $main-color; color: $main-color;

Loading…
Cancel
Save