yujialong 2 years ago
parent 355ab62c19
commit 48ec1e6c3b
  1. 1
      src/api/index.js
  2. 2
      src/layouts/header/index.vue
  3. 2
      src/pages/activity/manage/list/index.vue
  4. 2889
      src/pages/match/details/index.vue
  5. 61
      src/pages/station/preview/index.vue
  6. 2
      src/setting.js
  7. 5
      src/styles/page/station.scss

@ -137,6 +137,7 @@ export default {
stageGradeManagementList: `competition/competition/performance/stageGradeManagementList`,
stageTeamScoreDetails: `competition/competition/rank/stageTeamScoreDetails`,
getRedisCacheCompetition: `competition/competition/management/getRedisCache`,
getCompetitionStageRankingTime: `competition/competitionReleaseTime/getCompetitionStageRankingTime`,
// 创业活动
activityList: `occupationlab/occupationlab/activity/activityList`,

@ -127,7 +127,7 @@ export default {
}).then(res => {
this.notices = res.notificationList
}).catch(res => { });
}, 1000)
}, 5000)
}
},
//

@ -1,7 +1,7 @@
<template>
<div class="wrap">
<breadcrumb ref="breadcrumb"
data="创业动/我的项目"></breadcrumb>
data="创业动/我的项目"></breadcrumb>
<div class="page">
<h6 class="p-title">筛选</h6>
<div class="tool mul">

File diff suppressed because it is too large Load Diff

@ -258,17 +258,18 @@
<i v-if="deleteIdentity || item.currentAccountId == item.createAccountId"
class="icon el-icon-delete"
@click="delComment(item)"></i>
<img v-if="item.isLike"
class="icon"
src="@/assets/img/like-up.png"
alt=""
@click="like(item)">
<img v-else
class="icon"
src="@/assets/img/like.png"
alt=""
@click="like(item)">
{{ item.likeCount || '' }}
<!-- <div class="like-wrap"
@click="like($event, item)">
<img v-if="item.isLike"
class="icon"
src="@/assets/img/like-up.png"
alt="">
<img v-else
class="icon"
src="@/assets/img/like.png"
alt="">
{{ item.likeCount || '' }}
</div> -->
</div>
</div>
<div class="reply"
@ -295,7 +296,7 @@
<div class="texts">
<div class="name">{{reply.createUsername}}</div>
<div class="flex m-v-8">
<template v-if="reply.showReplyName">
<template>
回复
<span class="reply-name">@{{ reply.replyUsername }}</span>
</template>
@ -310,18 +311,18 @@
<i v-if="deleteIdentity || reply.currentAccountId == reply.createAccountId"
class="icon el-icon-delete"
@click="delComment(reply)"></i>
<template v-if="reply.isLike">
<img class="icon"
<!-- <div class="like-wrap"
@click="like($event, item, reply)">
<img v-if="reply.isLike"
class="icon"
src="@/assets/img/like-up.png"
alt=""
@click="like(item, reply)">
{{ reply.likeCount }}
</template>
<img v-else
class="icon"
src="@/assets/img/like.png"
alt=""
@click="like(item, reply)">
alt="">
<img v-else
class="icon"
src="@/assets/img/like.png"
alt="">
{{ reply.likeCount || '' }}
</div> -->
</div>
</div>
<div class="reply"
@ -588,7 +589,7 @@ export default {
let res = await this.$get(`${this.api.curriculumChapter}/${this.courseId}`);
this.chapterList = res.chapterList;
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);
}
},
//
@ -608,7 +609,6 @@ export default {
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) {
@ -677,6 +677,7 @@ 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) {
@ -700,9 +701,7 @@ export default {
e.replyContent = ''
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)
})
@ -729,9 +728,10 @@ export default {
this.$post(this.api.addComment, {
cid: this.courseId,
content,
pid: reply ? reply.commentId : row ? row.commentId : 0,
pid: row ? row.commentId : 0,
replyAccountId: reply ? reply.createAccountId : row.createAccountId || '',
status: row ? 2 : 1
status: row ? 2 : 1,
replyCommentId: reply ? reply.commentId : row ? row.commentId : ''
}).then(res => {
this.comment = ''
this.curReplyId = row ? row.commentId : ''
@ -739,7 +739,8 @@ export default {
}).catch(res => { })
},
//
like (row, reply) {
like (e, row, reply) {
console.log(11, e.pageY)
this.$post(`${this.api[(reply ? reply.isLike : row.isLike) ? 'unlike' : 'commentAndLike']}?commentId=${reply ? reply.commentId : row.commentId}`).then(res => {
this.curReplyId = row.commentId
this.getComment()

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

@ -51,6 +51,11 @@
}
}
}
.like-wrap {
display: inline-flex;
align-items: center;
cursor: pointer;
}
}
.reply {
padding-bottom: 10px;

Loading…
Cancel
Save