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. 2871
      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`, stageGradeManagementList: `competition/competition/performance/stageGradeManagementList`,
stageTeamScoreDetails: `competition/competition/rank/stageTeamScoreDetails`, stageTeamScoreDetails: `competition/competition/rank/stageTeamScoreDetails`,
getRedisCacheCompetition: `competition/competition/management/getRedisCache`, getRedisCacheCompetition: `competition/competition/management/getRedisCache`,
getCompetitionStageRankingTime: `competition/competitionReleaseTime/getCompetitionStageRankingTime`,
// 创业活动 // 创业活动
activityList: `occupationlab/occupationlab/activity/activityList`, activityList: `occupationlab/occupationlab/activity/activityList`,

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

@ -1,7 +1,7 @@
<template> <template>
<div class="wrap"> <div class="wrap">
<breadcrumb ref="breadcrumb" <breadcrumb ref="breadcrumb"
data="创业动/我的项目"></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">

File diff suppressed because it is too large Load Diff

@ -258,17 +258,18 @@
<i v-if="deleteIdentity || item.currentAccountId == item.createAccountId" <i v-if="deleteIdentity || item.currentAccountId == item.createAccountId"
class="icon el-icon-delete" class="icon el-icon-delete"
@click="delComment(item)"></i> @click="delComment(item)"></i>
<img v-if="item.isLike" <!-- <div class="like-wrap"
class="icon" @click="like($event, item)">
src="@/assets/img/like-up.png" <img v-if="item.isLike"
alt="" class="icon"
@click="like(item)"> src="@/assets/img/like-up.png"
<img v-else alt="">
class="icon" <img v-else
src="@/assets/img/like.png" class="icon"
alt="" src="@/assets/img/like.png"
@click="like(item)"> alt="">
{{ item.likeCount || '' }} {{ item.likeCount || '' }}
</div> -->
</div> </div>
</div> </div>
<div class="reply" <div class="reply"
@ -295,7 +296,7 @@
<div class="texts"> <div class="texts">
<div class="name">{{reply.createUsername}}</div> <div class="name">{{reply.createUsername}}</div>
<div class="flex m-v-8"> <div class="flex m-v-8">
<template v-if="reply.showReplyName"> <template>
回复 回复
<span class="reply-name">@{{ reply.replyUsername }}</span> <span class="reply-name">@{{ reply.replyUsername }}</span>
</template> </template>
@ -310,18 +311,18 @@
<i v-if="deleteIdentity || reply.currentAccountId == reply.createAccountId" <i v-if="deleteIdentity || reply.currentAccountId == reply.createAccountId"
class="icon el-icon-delete" class="icon el-icon-delete"
@click="delComment(reply)"></i> @click="delComment(reply)"></i>
<template v-if="reply.isLike"> <!-- <div class="like-wrap"
<img class="icon" @click="like($event, item, reply)">
<img v-if="reply.isLike"
class="icon"
src="@/assets/img/like-up.png" src="@/assets/img/like-up.png"
alt="" alt="">
@click="like(item, reply)"> <img v-else
{{ reply.likeCount }} class="icon"
</template> src="@/assets/img/like.png"
<img v-else alt="">
class="icon" {{ reply.likeCount || '' }}
src="@/assets/img/like.png" </div> -->
alt=""
@click="like(item, reply)">
</div> </div>
</div> </div>
<div class="reply" <div class="reply"
@ -588,7 +589,7 @@ export default {
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 && !this.commentId) { 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' if (!e.userAvatars) e.userAvatars = 'https://cube.elemecdn.com/3/7c/3ea6beec64369c2642b92c6726f1epng.png'
}) })
this.maximumScores = list this.maximumScores = list
console.log("🚀 ~ file: index.vue:604 ~ getMaximumScore ~ this.maximumScores:", this.maximumScores)
}, },
// //
percentFormat (val) { percentFormat (val) {
@ -677,6 +677,7 @@ export default {
this.$nextTick(async () => { this.$nextTick(async () => {
if (this.curReplyId) { if (this.curReplyId) {
const el = document.querySelector('#comment' + this.curReplyId) const el = document.querySelector('#comment' + this.curReplyId)
console.log("🚀 ~ file: index.vue:681 ~ this.$nextTick ~ el:", el)
el && el.scrollIntoView(false) el && el.scrollIntoView(false)
} }
if (this.commentId) { if (this.commentId) {
@ -700,9 +701,7 @@ export default {
e.replyContent = '' e.replyContent = ''
if (e.children && e.children.length && parent.children) { if (e.children && e.children.length && parent.children) {
e.children.forEach(n => n.showReplyName = true) e.children.forEach(n => n.showReplyName = true)
// parent.children.splice(i, 0, ...e.children)
parent.children.push(...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) e.children && this.handleComments(e.children, parent.commentId ? parent : e)
}) })
@ -729,9 +728,10 @@ export default {
this.$post(this.api.addComment, { this.$post(this.api.addComment, {
cid: this.courseId, cid: this.courseId,
content, content,
pid: reply ? reply.commentId : row ? row.commentId : 0, pid: row ? row.commentId : 0,
replyAccountId: reply ? reply.createAccountId : row.createAccountId || '', replyAccountId: reply ? reply.createAccountId : row.createAccountId || '',
status: row ? 2 : 1 status: row ? 2 : 1,
replyCommentId: reply ? reply.commentId : row ? row.commentId : ''
}).then(res => { }).then(res => {
this.comment = '' this.comment = ''
this.curReplyId = row ? row.commentId : '' this.curReplyId = row ? row.commentId : ''
@ -739,7 +739,8 @@ export default {
}).catch(res => { }) }).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.$post(`${this.api[(reply ? reply.isLike : row.isLike) ? 'unlike' : 'commentAndLike']}?commentId=${reply ? reply.commentId : row.commentId}`).then(res => {
this.curReplyId = row.commentId this.curReplyId = row.commentId
this.getComment() this.getComment()

@ -29,7 +29,7 @@ if (isPro) {
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.152:9000/"; // 榕 // host = "http://192.168.31.152:9000/"; // 榕
// host = "http://192.168.31.53:9000/"; // 赓 // host = "http://192.168.31.51:9000/"; // 赓
} }
const Setting = { const Setting = {

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

Loading…
Cancel
Save