Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a34ed84a29 | ||
|
|
a263e8a7e0 | ||
|
|
bb819d07a1 | ||
|
|
0ef2b697a3 | ||
|
|
97f2e6a17c | ||
|
|
9e59ae710a | ||
|
|
5f9a5aeae7 | ||
|
|
a260b98725 | ||
|
|
4fb04c2be8 | ||
|
|
2d84ee213c |
@@ -12,6 +12,30 @@ export function getList(data) {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取PK赛参与人
|
||||||
|
* @param { pkId: string, chooseItemId: string, pageNo: number, pageSize: number } data
|
||||||
|
*/
|
||||||
|
export function getParticipantList(data) {
|
||||||
|
return request({
|
||||||
|
url: 'management/api/rating/pk/participants',
|
||||||
|
method: 'get',
|
||||||
|
params: data,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* pk 投票
|
||||||
|
* @param { pkId: string, itemId: string, userId: string } data
|
||||||
|
*/
|
||||||
|
export function vote(data) {
|
||||||
|
return request({
|
||||||
|
url: 'management/api/rating/pk/vote',
|
||||||
|
method: 'post',
|
||||||
|
data,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 生成PK赛
|
* 生成PK赛
|
||||||
* @param {topicId: string, leftItemId: string, rightItemId: string} data
|
* @param {topicId: string, leftItemId: string, rightItemId: string} data
|
||||||
@@ -23,3 +47,68 @@ export function generate(data) {
|
|||||||
data,
|
data,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取PK赛评论列表
|
||||||
|
* @param { pageNo: number, pageSize: number, pkId: string, status?: number, rootCommentId?: string, orderBy?: string } data
|
||||||
|
*/
|
||||||
|
export function getCommentList(data) {
|
||||||
|
return request({
|
||||||
|
url: 'management/api/rating/pk/comment/list',
|
||||||
|
method: 'get',
|
||||||
|
params: data,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* PK赛 评论/回复
|
||||||
|
* @param { userId: string, pkId: string, content: string, parentCommentId?: string, replyToCommentId?: string } data
|
||||||
|
* @param { parentCommentId: string } data 评论回复必传
|
||||||
|
* @param { replyToCommentId: string } data 回复必传
|
||||||
|
*/
|
||||||
|
export function comment(data) {
|
||||||
|
return request({
|
||||||
|
url: 'management/api/rating/pk/comment',
|
||||||
|
method: 'post',
|
||||||
|
data,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* PK赛 评论 点赞
|
||||||
|
* @param { userId: string, commentId: string } data
|
||||||
|
*/
|
||||||
|
export function like(data) {
|
||||||
|
return request({
|
||||||
|
url: 'management/api/rating/pk/comment/like',
|
||||||
|
method: 'post',
|
||||||
|
data,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* PK赛 评论 禁用/启用
|
||||||
|
* @param { id: string, enable: boolean } data
|
||||||
|
*/
|
||||||
|
export function toggleEnable(data) {
|
||||||
|
return request({
|
||||||
|
url: 'management/api/rating/pk/comment/toggle',
|
||||||
|
method: 'post',
|
||||||
|
data,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 修改评论状态
|
||||||
|
* @param {*} { id, enable: boolean }
|
||||||
|
* @param { enable: boolean } data 是否启用
|
||||||
|
* @param { id: string } data 评论id
|
||||||
|
* @returns
|
||||||
|
*/
|
||||||
|
export function commentStatus(data) {
|
||||||
|
return request({
|
||||||
|
url: 'management/api/rating/pk/comment/toggle',
|
||||||
|
method: 'post',
|
||||||
|
data,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|||||||
@@ -52,3 +52,16 @@ export function doEdit(id, data) {
|
|||||||
data,
|
data,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 创建话题分类
|
||||||
|
* @param {title: string} data
|
||||||
|
* @returns
|
||||||
|
*/
|
||||||
|
export function doAdd(data) {
|
||||||
|
return request({
|
||||||
|
url: '/management/api/rating/topic_category',
|
||||||
|
method: 'post',
|
||||||
|
data,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|||||||
@@ -47,3 +47,14 @@ export function toggleEnable(id, isEnabled) {
|
|||||||
data: { isEnabled },
|
data: { isEnabled },
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 评分项审核列表
|
||||||
|
*/
|
||||||
|
export function getPendingList(data) {
|
||||||
|
return request({
|
||||||
|
url: 'management/api/rating/topicItem/pending/list',
|
||||||
|
method: 'get',
|
||||||
|
params: data,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|||||||
@@ -29,7 +29,7 @@ export function scoreRecordList(data) {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* 评论记录
|
* 评论记录
|
||||||
* @param {*} { pageNo, pageSize, userId?, topicId?, itemId?, trueUser? }
|
* @param {*} { pageNo, pageSize, userId?, topicId?, itemId?, trueUser?, rootCommentId? }
|
||||||
* @returns
|
* @returns
|
||||||
*/
|
*/
|
||||||
export function userCommentList(data) {
|
export function userCommentList(data) {
|
||||||
@@ -42,7 +42,9 @@ export function userCommentList(data) {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* 评论
|
* 评论
|
||||||
* @param {*} { topicId, itemId, comment, userId }
|
* @param {*} { topicId, itemId, comment, userId,parentCommentId, replyToCommentId, }
|
||||||
|
* @param { parentCommentId: string } data 评论回复必传
|
||||||
|
* @param { replyToCommentId: string } data 回复必传
|
||||||
* @returns
|
* @returns
|
||||||
*/
|
*/
|
||||||
export function comment(data) {
|
export function comment(data) {
|
||||||
@@ -53,6 +55,21 @@ export function comment(data) {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 修改评论状态
|
||||||
|
* @param {*} { id, enable: boolean }
|
||||||
|
* @param { enable: boolean } data 是否启用
|
||||||
|
* @param { id: string } data 评论id
|
||||||
|
* @returns
|
||||||
|
*/
|
||||||
|
export function commentStatus(data) {
|
||||||
|
return request({
|
||||||
|
url: 'management/api/rating/topicItemOperate/comment/toggle',
|
||||||
|
method: 'post',
|
||||||
|
data,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 评论点赞
|
* 评论点赞
|
||||||
* @param {*} { commentId, userId }
|
* @param {*} { commentId, userId }
|
||||||
@@ -82,3 +99,15 @@ export function reviewTopic(data) {
|
|||||||
data,
|
data,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 审核日志列表
|
||||||
|
* @param { pageNo, pageSize, topicId?, itemId?, userId? }
|
||||||
|
*/
|
||||||
|
export function getReviewLogList(data) {
|
||||||
|
return request({
|
||||||
|
url: 'management/api/rating/topicItemOperate/pending/history',
|
||||||
|
method: 'get',
|
||||||
|
params: data,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|||||||
67
src/api/rating/topicRecommend.js
Normal file
67
src/api/rating/topicRecommend.js
Normal file
@@ -0,0 +1,67 @@
|
|||||||
|
import request from '@/utils/request'
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取话题推荐列表
|
||||||
|
* @param {*} data
|
||||||
|
* @returns
|
||||||
|
*/
|
||||||
|
export function getList(data) {
|
||||||
|
return request({
|
||||||
|
url: 'management/api/rating/topic_recommend/list',
|
||||||
|
method: 'get',
|
||||||
|
params: data,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 添加话题推荐
|
||||||
|
* @param {{ topicId: string }} data
|
||||||
|
* @returns
|
||||||
|
*/
|
||||||
|
export function doAdd(data) {
|
||||||
|
return request({
|
||||||
|
url: 'management/api/rating/topic_recommend',
|
||||||
|
method: 'post',
|
||||||
|
data,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 切换话题推荐状态
|
||||||
|
* @param {*} id
|
||||||
|
* @param {*} enable
|
||||||
|
* @returns
|
||||||
|
*/
|
||||||
|
export function toggleEnable(id, enable) {
|
||||||
|
return request({
|
||||||
|
url: `/management/api/rating/topic_recommend/toggle/${id}`,
|
||||||
|
method: 'patch',
|
||||||
|
data: { enable },
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 移动话题推荐
|
||||||
|
* @param {*} id
|
||||||
|
* @param {*} to
|
||||||
|
* @returns
|
||||||
|
*/
|
||||||
|
export function moveTo(id, to) {
|
||||||
|
return request({
|
||||||
|
url: `/management/api/rating/topic_recommend/move_to/${id}`,
|
||||||
|
method: 'patch',
|
||||||
|
data: { to },
|
||||||
|
})
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* 编辑话题推荐
|
||||||
|
* @param {*} id
|
||||||
|
* @returns
|
||||||
|
*/
|
||||||
|
export function doEdit(id, data) {
|
||||||
|
return request({
|
||||||
|
url: `/management/api/rating/topic_recommend/${id}`,
|
||||||
|
method: 'put',
|
||||||
|
data,
|
||||||
|
})
|
||||||
|
}
|
||||||
108
src/components/UserInfo/index.vue
Normal file
108
src/components/UserInfo/index.vue
Normal file
@@ -0,0 +1,108 @@
|
|||||||
|
<template>
|
||||||
|
<div class="user-info-component">
|
||||||
|
<div v-if="user" class="user-info-cell" :class="{ 'is-clickable': !user.isRobot }" @click="handleUserClick">
|
||||||
|
<el-image v-if="user.avatar" class="user-avatar" :preview-src-list="[user.avatar]" :src="getThumbUrl(user.avatar)" @click.stop />
|
||||||
|
<div v-else class="user-avatar-placeholder"><i class="el-icon-user" /></div>
|
||||||
|
<div class="user-details">
|
||||||
|
<div class="user-nickname" :class="{ 'hover-link': !user.isRobot }">
|
||||||
|
{{ user.nickname || '未知用户' }}
|
||||||
|
<el-tag v-if="user.isRobot" size="mini" style="margin-left: 4px" type="info">机器人</el-tag>
|
||||||
|
<el-tag v-else size="mini" style="margin-left: 4px" type="success">真人</el-tag>
|
||||||
|
</div>
|
||||||
|
<div class="user-id">{{ user.id }}</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div v-else class="user-details">
|
||||||
|
<div class="user-id">{{ userId }}</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import { getThumbUrl } from '@/utils/blessing'
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: 'UserInfo',
|
||||||
|
props: {
|
||||||
|
user: {
|
||||||
|
type: Object,
|
||||||
|
default: () => null,
|
||||||
|
},
|
||||||
|
userId: {
|
||||||
|
type: String,
|
||||||
|
default: '',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
getThumbUrl,
|
||||||
|
handleUserClick() {
|
||||||
|
if (this.user && !this.user.isRobot) {
|
||||||
|
// 跳转到用户页面
|
||||||
|
this.$router.push({
|
||||||
|
path: '/spring/user/user',
|
||||||
|
query: { userId: this.user.id },
|
||||||
|
})
|
||||||
|
}
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
.user-info-component {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.user-info-cell {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.is-clickable {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.is-clickable:hover .hover-link {
|
||||||
|
color: #409eff;
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
|
.user-avatar,
|
||||||
|
.user-avatar-placeholder {
|
||||||
|
width: 40px;
|
||||||
|
height: 40px;
|
||||||
|
border-radius: 50%;
|
||||||
|
margin-right: 12px;
|
||||||
|
flex-shrink: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.user-avatar-placeholder {
|
||||||
|
background-color: #f0f2f5;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
color: #909399;
|
||||||
|
font-size: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.user-details {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.user-nickname {
|
||||||
|
font-weight: bold;
|
||||||
|
color: #303133;
|
||||||
|
margin-bottom: 4px;
|
||||||
|
white-space: nowrap;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
transition: color 0.2s;
|
||||||
|
}
|
||||||
|
|
||||||
|
.user-id {
|
||||||
|
font-size: 12px;
|
||||||
|
color: #909399;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
@@ -61,6 +61,12 @@ export const asyncRoutes = [
|
|||||||
component: () => import('@/views/rating/topic/index'),
|
component: () => import('@/views/rating/topic/index'),
|
||||||
meta: { title: '评分话题' },
|
meta: { title: '评分话题' },
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
path: 'topic-recommend',
|
||||||
|
name: 'RatingTopicRecommendIndex',
|
||||||
|
component: () => import('@/views/rating/topicRecommend/index'),
|
||||||
|
meta: { title: '话题推荐' },
|
||||||
|
},
|
||||||
{
|
{
|
||||||
path: 'topic-item',
|
path: 'topic-item',
|
||||||
name: 'RatingTopicItemIndex',
|
name: 'RatingTopicItemIndex',
|
||||||
@@ -104,19 +110,45 @@ export const asyncRoutes = [
|
|||||||
meta: { title: 'PK赛列表', icon: 'setting' },
|
meta: { title: 'PK赛列表', icon: 'setting' },
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: 'pkRecord',
|
path: 'pkComment',
|
||||||
name: 'PkRecord',
|
name: 'PkComment',
|
||||||
component: () => import('@/views/rating/pk/record/index'),
|
component: () => import('@/views/rating/pk/comment/index'),
|
||||||
meta: { title: 'PK赛记录', icon: 'setting' },
|
meta: { title: 'pK赛评论', icon: 'setting' },
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
path: '审核',
|
||||||
|
component: EmptyLayout,
|
||||||
|
alwaysShow: true,
|
||||||
|
redirect: 'noRedirect',
|
||||||
|
name: 'AuditIndex',
|
||||||
|
meta: {
|
||||||
|
title: '审核',
|
||||||
|
icon: 'clover',
|
||||||
|
permissions: ['admin'],
|
||||||
|
},
|
||||||
|
children: [
|
||||||
{
|
{
|
||||||
path: 'topic-review',
|
path: 'topic-review',
|
||||||
name: 'RatingTopicReviewIndex',
|
name: 'RatingTopicReviewIndex',
|
||||||
component: () => import('@/views/rating/topicReview/index'),
|
component: () => import('@/views/rating/topicReview/index'),
|
||||||
meta: { title: '话题审核' },
|
meta: { title: '话题审核' },
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
path: 'item-review',
|
||||||
|
name: 'RatingTopicItemReviewIndex',
|
||||||
|
component: () => import('@/views/rating/topicItemReview/index'),
|
||||||
|
meta: { title: '评分项审核' },
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: 'item-review-log',
|
||||||
|
name: 'RatingTopicItemReviewLogIndex',
|
||||||
|
component: () => import('@/views/rating/topicItemReviewLog/index'),
|
||||||
|
meta: { title: '审核日志' },
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|||||||
176
src/views/rating/pk/comment/components/CommentReplyList.vue
Normal file
176
src/views/rating/pk/comment/components/CommentReplyList.vue
Normal file
@@ -0,0 +1,176 @@
|
|||||||
|
<template>
|
||||||
|
<el-dialog :title="title" :visible.sync="dialogVisible" width="900px" @close="close">
|
||||||
|
<el-table v-loading="listLoading" :data="list" :element-loading-text="elementLoadingText">
|
||||||
|
<el-table-column align="center" fixed="left" label="操作" width="120">
|
||||||
|
<template #default="{ row }">
|
||||||
|
<el-button type="text" @click="handleLike(row)">点赞</el-button>
|
||||||
|
<el-button type="text" @click="handleReply(row)">回复</el-button>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
|
||||||
|
<el-table-column align="left" label="回复内容" min-width="250">
|
||||||
|
<template #default="{ row }">
|
||||||
|
<div class="comment-content-cell">
|
||||||
|
<div v-if="row.replyToUser" class="reply-target">回复 @{{ row.replyToUser.nickname || '未知用户' }}:</div>
|
||||||
|
<div class="content-text">{{ row.content }}</div>
|
||||||
|
<div class="comment-meta">
|
||||||
|
<span class="meta-item">
|
||||||
|
<i class="el-icon-thumb" />
|
||||||
|
{{ row.likeCount || 0 }}
|
||||||
|
</span>
|
||||||
|
<el-tag v-if="row.status === 2" size="mini" style="margin-left: 8px" type="success">已展示</el-tag>
|
||||||
|
<el-tag v-else size="mini" style="margin-left: 8px" type="info">隐藏/待审</el-tag>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
|
||||||
|
<el-table-column align="left" label="用户信息" min-width="180">
|
||||||
|
<template #default="{ row }">
|
||||||
|
<user-info :user="row.user" :user-id="row.userId" />
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
|
||||||
|
<el-table-column align="center" label="状态切换" width="80">
|
||||||
|
<template #default="{ row }">
|
||||||
|
<el-switch v-model="row.status" :active-value="2" :inactive-value="4" @change="handleToggleStatus(row)" />
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
|
||||||
|
<el-table-column align="center" label="时间" prop="createdAt" width="160">
|
||||||
|
<template #default="{ row }">
|
||||||
|
{{ formatTime(row.createdAt) }}
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
</el-table>
|
||||||
|
|
||||||
|
<el-pagination
|
||||||
|
background
|
||||||
|
:current-page="queryForm.pageNo"
|
||||||
|
:layout="layout"
|
||||||
|
:page-size="queryForm.pageSize"
|
||||||
|
:total="total"
|
||||||
|
@current-change="handleCurrentChange"
|
||||||
|
@size-change="handleSizeChange"
|
||||||
|
/>
|
||||||
|
</el-dialog>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import { getCommentList, commentStatus } from '@/api/rating/pk'
|
||||||
|
import { formatTime } from '@/utils'
|
||||||
|
import { getThumbUrl } from '@/utils/blessing'
|
||||||
|
import UserInfo from '@/components/UserInfo'
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: 'CommentReplyList',
|
||||||
|
components: { UserInfo },
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
title: '回复列表',
|
||||||
|
dialogVisible: false,
|
||||||
|
list: [],
|
||||||
|
listLoading: false,
|
||||||
|
layout: 'total, prev, pager, next',
|
||||||
|
total: 0,
|
||||||
|
elementLoadingText: '正在加载...',
|
||||||
|
queryForm: {
|
||||||
|
pageNo: 1,
|
||||||
|
pageSize: 10,
|
||||||
|
rootCommentId: '',
|
||||||
|
},
|
||||||
|
parentRow: null,
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
formatTime,
|
||||||
|
getThumbUrl,
|
||||||
|
show(row) {
|
||||||
|
this.parentRow = row
|
||||||
|
this.title = `回复列表`
|
||||||
|
this.dialogVisible = true
|
||||||
|
this.queryForm.rootCommentId = row.id
|
||||||
|
this.queryForm.pageNo = 1
|
||||||
|
this.fetchData()
|
||||||
|
},
|
||||||
|
close() {
|
||||||
|
this.dialogVisible = false
|
||||||
|
this.list = []
|
||||||
|
},
|
||||||
|
handleSizeChange(val) {
|
||||||
|
this.queryForm.pageSize = val
|
||||||
|
this.fetchData()
|
||||||
|
},
|
||||||
|
handleCurrentChange(val) {
|
||||||
|
this.queryForm.pageNo = val
|
||||||
|
this.fetchData()
|
||||||
|
},
|
||||||
|
async fetchData() {
|
||||||
|
this.listLoading = true
|
||||||
|
try {
|
||||||
|
const { data } = await getCommentList(this.queryForm)
|
||||||
|
this.list = data.list || []
|
||||||
|
this.total = data.totalCount || 0
|
||||||
|
} catch (error) {
|
||||||
|
console.error(error)
|
||||||
|
} finally {
|
||||||
|
this.listLoading = false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
handleLike(row) {
|
||||||
|
this.$emit('like', row)
|
||||||
|
},
|
||||||
|
handleReply(row) {
|
||||||
|
// 传递当前行作为被回复对象,同时传递根评论ID
|
||||||
|
this.$emit('reply', row, this.queryForm.rootCommentId)
|
||||||
|
},
|
||||||
|
async handleToggleStatus(row) {
|
||||||
|
try {
|
||||||
|
const enable = row.status === 2
|
||||||
|
const { msg } = await commentStatus({ id: row.id, enable })
|
||||||
|
this.$baseMessage(msg || '状态切换成功', 'success')
|
||||||
|
} catch (error) {
|
||||||
|
console.error(error)
|
||||||
|
row.status = row.status === 2 ? 4 : 2
|
||||||
|
}
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
.comment-content-cell {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
|
||||||
|
.reply-target {
|
||||||
|
font-size: 12px;
|
||||||
|
color: #409eff;
|
||||||
|
margin-bottom: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content-text {
|
||||||
|
font-size: 14px;
|
||||||
|
color: #303133;
|
||||||
|
margin-bottom: 8px;
|
||||||
|
word-break: break-all;
|
||||||
|
}
|
||||||
|
|
||||||
|
.comment-meta {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
font-size: 12px;
|
||||||
|
color: #909399;
|
||||||
|
}
|
||||||
|
|
||||||
|
.meta-item {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
margin-right: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.meta-item i {
|
||||||
|
margin-right: 4px;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
194
src/views/rating/pk/comment/components/PkCommentEdit.vue
Normal file
194
src/views/rating/pk/comment/components/PkCommentEdit.vue
Normal file
@@ -0,0 +1,194 @@
|
|||||||
|
<template>
|
||||||
|
<el-dialog :title="title" :visible.sync="dialogFormVisible" width="600px" @close="close">
|
||||||
|
<el-form ref="form" label-width="100px" :model="form" :rules="rules">
|
||||||
|
<el-form-item label="参与机器人" prop="userId">
|
||||||
|
<el-select v-model="form.userId" v-loadmore="loadMoreRobots" filterable placeholder="请选择参与评论的机器人" style="width: 100%">
|
||||||
|
<el-option v-for="item in robotList" :key="item.id" :label="item.nickname || item.id" :value="item.id">
|
||||||
|
<div style="display: flex; align-items: center">
|
||||||
|
<el-image
|
||||||
|
v-if="item.avatar"
|
||||||
|
:src="getThumbUrl(item.avatar)"
|
||||||
|
style="width: 24px; height: 24px; border-radius: 50%; margin-right: 10px"
|
||||||
|
/>
|
||||||
|
<span>{{ item.nickname || '未知用户' }}</span>
|
||||||
|
</div>
|
||||||
|
</el-option>
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
|
||||||
|
<el-form-item v-if="!isReply" label="PK赛" prop="pkId">
|
||||||
|
<el-select v-model="form.pkId" v-loadmore="loadMorePks" filterable placeholder="请选择PK赛" style="width: 100%">
|
||||||
|
<el-option v-for="item in pkList" :key="item.id" :label="getPkLabel(item)" :value="item.id" />
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
|
||||||
|
<el-form-item label="评论内容" prop="content">
|
||||||
|
<el-input v-model="form.content" maxlength="500" :placeholder="contentPlaceholder" :rows="4" show-word-limit type="textarea" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-form>
|
||||||
|
|
||||||
|
<div slot="footer" class="dialog-footer">
|
||||||
|
<el-button @click="close">取 消</el-button>
|
||||||
|
<el-button :loading="saving" type="primary" @click="save">确 定</el-button>
|
||||||
|
</div>
|
||||||
|
</el-dialog>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import { getListBase as getRobotList } from '@/api/system/robot'
|
||||||
|
import { getList as getPkList, comment } from '@/api/rating/pk'
|
||||||
|
import { getThumbUrl } from '@/utils/blessing'
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: 'PkCommentEdit',
|
||||||
|
directives: {
|
||||||
|
loadmore: {
|
||||||
|
bind(el, binding) {
|
||||||
|
setTimeout(() => {
|
||||||
|
const SELECTWRAP_DOM = el.querySelector('.el-select-dropdown .el-select-dropdown__wrap')
|
||||||
|
if (SELECTWRAP_DOM) {
|
||||||
|
SELECTWRAP_DOM.addEventListener('scroll', function () {
|
||||||
|
const condition = this.scrollHeight - this.scrollTop <= this.clientHeight + 2
|
||||||
|
if (condition) {
|
||||||
|
binding.value()
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}, 0)
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
title: '立即评论',
|
||||||
|
dialogFormVisible: false,
|
||||||
|
saving: false,
|
||||||
|
isReply: false,
|
||||||
|
contentPlaceholder: '请输入您的评论文字',
|
||||||
|
form: {
|
||||||
|
userId: '',
|
||||||
|
pkId: '',
|
||||||
|
content: '',
|
||||||
|
parentCommentId: '',
|
||||||
|
replyToCommentId: '',
|
||||||
|
},
|
||||||
|
rules: {
|
||||||
|
userId: [{ required: true, trigger: 'change', message: '请选择机器人' }],
|
||||||
|
pkId: [{ required: true, trigger: 'change', message: '请选择PK赛' }],
|
||||||
|
content: [{ required: true, trigger: 'blur', message: '请输入评论内容' }],
|
||||||
|
},
|
||||||
|
|
||||||
|
// 机器人列表
|
||||||
|
robotList: [],
|
||||||
|
robotQuery: { pageNo: 1, pageSize: 20, appId: '6a0d7dbe4c5de50f2ba66475' },
|
||||||
|
robotTotal: 0,
|
||||||
|
fetchingRobots: false,
|
||||||
|
|
||||||
|
// PK列表
|
||||||
|
pkList: [],
|
||||||
|
pkQuery: { pageNo: 1, pageSize: 20 },
|
||||||
|
pkTotal: 0,
|
||||||
|
fetchingPks: false,
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
getThumbUrl,
|
||||||
|
getPkLabel(item) {
|
||||||
|
if (!item) return ''
|
||||||
|
const left = item.leftItem ? item.leftItem.name : '未知'
|
||||||
|
const right = item.rightItem ? item.rightItem.name : '未知'
|
||||||
|
return `[${item.topic ? item.topic.title : '未知主题'}] ${left} vs ${right}`
|
||||||
|
},
|
||||||
|
showEdit(replyToRow = null, parentCommentId = null) {
|
||||||
|
this.dialogFormVisible = true
|
||||||
|
this.form = this.$options.data().form
|
||||||
|
|
||||||
|
if (replyToRow) {
|
||||||
|
this.isReply = true
|
||||||
|
this.title = '回复评论'
|
||||||
|
this.contentPlaceholder = `回复 @${replyToRow.user ? replyToRow.user.nickname : '未知用户'}:`
|
||||||
|
this.form.pkId = replyToRow.pkId
|
||||||
|
this.form.parentCommentId = parentCommentId || replyToRow.id
|
||||||
|
this.form.replyToCommentId = replyToRow.id
|
||||||
|
} else {
|
||||||
|
this.isReply = false
|
||||||
|
this.title = '立即评论'
|
||||||
|
this.contentPlaceholder = '请输入您的评论文字'
|
||||||
|
this.pkList = []
|
||||||
|
this.pkQuery.pageNo = 1
|
||||||
|
this.pkTotal = 0
|
||||||
|
this.fetchPkList()
|
||||||
|
}
|
||||||
|
|
||||||
|
this.robotList = []
|
||||||
|
this.robotQuery.pageNo = 1
|
||||||
|
this.robotTotal = 0
|
||||||
|
this.fetchRobotList()
|
||||||
|
},
|
||||||
|
close() {
|
||||||
|
this.$refs['form'].resetFields()
|
||||||
|
this.dialogFormVisible = false
|
||||||
|
},
|
||||||
|
|
||||||
|
// -- 机器人列表加载 --
|
||||||
|
async fetchRobotList() {
|
||||||
|
if (this.fetchingRobots) return
|
||||||
|
this.fetchingRobots = true
|
||||||
|
try {
|
||||||
|
const { data } = await getRobotList(this.robotQuery)
|
||||||
|
this.robotList = this.robotList.concat(data.list || [])
|
||||||
|
this.robotTotal = data.totalCount || 0
|
||||||
|
} catch (error) {
|
||||||
|
console.error(error)
|
||||||
|
} finally {
|
||||||
|
this.fetchingRobots = false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
loadMoreRobots() {
|
||||||
|
if (this.robotList.length >= this.robotTotal || this.fetchingRobots) return
|
||||||
|
this.robotQuery.pageNo += 1
|
||||||
|
this.fetchRobotList()
|
||||||
|
},
|
||||||
|
|
||||||
|
// -- PK 列表加载 --
|
||||||
|
async fetchPkList() {
|
||||||
|
if (this.fetchingPks) return
|
||||||
|
this.fetchingPks = true
|
||||||
|
try {
|
||||||
|
const { data } = await getPkList(this.pkQuery)
|
||||||
|
this.pkList = this.pkList.concat(data.list || [])
|
||||||
|
this.pkTotal = data.totalCount || 0
|
||||||
|
} catch (error) {
|
||||||
|
console.error(error)
|
||||||
|
} finally {
|
||||||
|
this.fetchingPks = false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
loadMorePks() {
|
||||||
|
if (this.pkList.length >= this.pkTotal || this.fetchingPks) return
|
||||||
|
this.pkQuery.pageNo += 1
|
||||||
|
this.fetchPkList()
|
||||||
|
},
|
||||||
|
|
||||||
|
save() {
|
||||||
|
this.$refs['form'].validate(async (valid) => {
|
||||||
|
if (valid) {
|
||||||
|
this.saving = true
|
||||||
|
try {
|
||||||
|
const { msg } = await comment(this.form)
|
||||||
|
this.$baseMessage(msg || (this.isReply ? '回复成功' : '评论成功'), 'success')
|
||||||
|
this.close()
|
||||||
|
this.$emit('fetch-data')
|
||||||
|
} catch (error) {
|
||||||
|
console.error(error)
|
||||||
|
} finally {
|
||||||
|
this.saving = false
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
})
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
</script>
|
||||||
134
src/views/rating/pk/comment/components/PkCommentLikeEdit.vue
Normal file
134
src/views/rating/pk/comment/components/PkCommentLikeEdit.vue
Normal file
@@ -0,0 +1,134 @@
|
|||||||
|
<template>
|
||||||
|
<el-dialog :title="title" :visible.sync="dialogFormVisible" width="500px" @close="close">
|
||||||
|
<el-form ref="form" label-width="80px" :model="form" :rules="rules">
|
||||||
|
<el-form-item label="点赞用户" prop="userId">
|
||||||
|
<el-select v-model="form.userId" v-loadmore="loadMoreRobots" filterable placeholder="请选择执行点赞的机器人" style="width: 100%">
|
||||||
|
<el-option v-for="item in robotList" :key="item.id" :label="item.nickname || item.id" :value="item.id">
|
||||||
|
<div style="display: flex; align-items: center">
|
||||||
|
<el-image
|
||||||
|
v-if="item.avatar"
|
||||||
|
:src="getThumbUrl(item.avatar)"
|
||||||
|
style="width: 24px; height: 24px; border-radius: 50%; margin-right: 10px"
|
||||||
|
/>
|
||||||
|
<span>{{ item.nickname || '未知用户' }}</span>
|
||||||
|
</div>
|
||||||
|
</el-option>
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
</el-form>
|
||||||
|
|
||||||
|
<div slot="footer" class="dialog-footer">
|
||||||
|
<el-button @click="close">取 消</el-button>
|
||||||
|
<el-button :loading="saving" type="primary" @click="save">确 定</el-button>
|
||||||
|
</div>
|
||||||
|
</el-dialog>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import { getListBase as getRobotList } from '@/api/system/robot'
|
||||||
|
import { like } from '@/api/rating/pk'
|
||||||
|
import { getThumbUrl } from '@/utils/blessing'
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: 'PkCommentLikeEdit',
|
||||||
|
directives: {
|
||||||
|
loadmore: {
|
||||||
|
bind(el, binding) {
|
||||||
|
setTimeout(() => {
|
||||||
|
const SELECTWRAP_DOM = el.querySelector('.el-select-dropdown .el-select-dropdown__wrap')
|
||||||
|
if (SELECTWRAP_DOM) {
|
||||||
|
SELECTWRAP_DOM.addEventListener('scroll', function () {
|
||||||
|
const condition = this.scrollHeight - this.scrollTop <= this.clientHeight + 2
|
||||||
|
if (condition) {
|
||||||
|
binding.value()
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}, 0)
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
title: '选择机器人点赞',
|
||||||
|
dialogFormVisible: false,
|
||||||
|
saving: false,
|
||||||
|
form: {
|
||||||
|
commentId: '',
|
||||||
|
userId: '',
|
||||||
|
},
|
||||||
|
rules: {
|
||||||
|
userId: [{ required: true, trigger: 'change', message: '请选择执行点赞的机器人' }],
|
||||||
|
},
|
||||||
|
|
||||||
|
// 机器人下拉列表状态
|
||||||
|
robotList: [],
|
||||||
|
robotQuery: {
|
||||||
|
appId: '6a0d7dbe4c5de50f2ba66475',
|
||||||
|
pageNo: 1,
|
||||||
|
pageSize: 20,
|
||||||
|
commentId: '',
|
||||||
|
},
|
||||||
|
robotTotal: 0,
|
||||||
|
fetchingRobots: false,
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
getThumbUrl,
|
||||||
|
showEdit(row) {
|
||||||
|
this.title = '选择机器人点赞'
|
||||||
|
this.dialogFormVisible = true
|
||||||
|
this.form = this.$options.data().form
|
||||||
|
this.form.commentId = row.id
|
||||||
|
|
||||||
|
// 重置列表并加载第一页
|
||||||
|
this.robotList = []
|
||||||
|
this.robotQuery.pageNo = 1
|
||||||
|
this.robotQuery.commentId = row.id
|
||||||
|
this.robotTotal = 0
|
||||||
|
this.fetchRobotList()
|
||||||
|
},
|
||||||
|
close() {
|
||||||
|
this.$refs['form'].resetFields()
|
||||||
|
this.dialogFormVisible = false
|
||||||
|
},
|
||||||
|
async fetchRobotList() {
|
||||||
|
if (this.fetchingRobots) return
|
||||||
|
this.fetchingRobots = true
|
||||||
|
try {
|
||||||
|
const { data } = await getRobotList(this.robotQuery)
|
||||||
|
this.robotList = this.robotList.concat(data.list || [])
|
||||||
|
this.robotTotal = data.totalCount || 0
|
||||||
|
} catch (error) {
|
||||||
|
console.error(error)
|
||||||
|
} finally {
|
||||||
|
this.fetchingRobots = false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
loadMoreRobots() {
|
||||||
|
if (this.robotList.length >= this.robotTotal || this.fetchingRobots) return
|
||||||
|
this.robotQuery.pageNo += 1
|
||||||
|
this.fetchRobotList()
|
||||||
|
},
|
||||||
|
save() {
|
||||||
|
this.$refs['form'].validate(async (valid) => {
|
||||||
|
if (valid) {
|
||||||
|
this.saving = true
|
||||||
|
try {
|
||||||
|
const { msg } = await like(this.form)
|
||||||
|
this.$baseMessage(msg || '点赞成功', 'success')
|
||||||
|
this.close()
|
||||||
|
this.$emit('fetch-data')
|
||||||
|
} catch (error) {
|
||||||
|
console.error(error)
|
||||||
|
} finally {
|
||||||
|
this.saving = false
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
})
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
</script>
|
||||||
317
src/views/rating/pk/comment/index.vue
Normal file
317
src/views/rating/pk/comment/index.vue
Normal file
@@ -0,0 +1,317 @@
|
|||||||
|
<template>
|
||||||
|
<div class="rating-pk-comment-container">
|
||||||
|
<vab-query-form>
|
||||||
|
<vab-query-form-left-panel :span="24">
|
||||||
|
<el-form :inline="true" :model="queryForm" @submit.native.prevent>
|
||||||
|
<el-form-item>
|
||||||
|
<el-select
|
||||||
|
v-model="queryForm.pkId"
|
||||||
|
v-loadmore="loadMorePks"
|
||||||
|
clearable
|
||||||
|
filterable
|
||||||
|
placeholder="请选择PK赛"
|
||||||
|
style="width: 250px"
|
||||||
|
@change="handleFilterChange"
|
||||||
|
>
|
||||||
|
<el-option v-for="item in pkList" :key="item.id" :label="getPkLabel(item)" :value="item.id" />
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
|
||||||
|
<el-form-item>
|
||||||
|
<el-select v-model="queryForm.status" clearable placeholder="评论状态" @change="handleFilterChange">
|
||||||
|
<el-option label="待审/隐藏" :value="1" />
|
||||||
|
<el-option label="已展示" :value="2" />
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
|
||||||
|
<el-form-item>
|
||||||
|
<el-button icon="el-icon-search" type="primary" @click="queryData">查询</el-button>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item>
|
||||||
|
<el-button icon="el-icon-edit" type="success" @click="handleCommentNow">立即评论</el-button>
|
||||||
|
</el-form-item>
|
||||||
|
</el-form>
|
||||||
|
</vab-query-form-left-panel>
|
||||||
|
</vab-query-form>
|
||||||
|
|
||||||
|
<el-table v-loading="listLoading" :data="list" :element-loading-text="elementLoadingText">
|
||||||
|
<el-table-column align="center" fixed="left" label="操作" width="160">
|
||||||
|
<template #default="{ row }">
|
||||||
|
<el-button type="text" @click="handleLike(row)">点赞</el-button>
|
||||||
|
<el-button type="text" @click="handleReply(row)">回复</el-button>
|
||||||
|
<el-button v-if="row.replyCount > 0" type="text" @click="handleViewReplies(row)">查看回复</el-button>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
|
||||||
|
<el-table-column align="left" label="评论内容" min-width="250">
|
||||||
|
<template #default="{ row }">
|
||||||
|
<div class="comment-content-cell">
|
||||||
|
<div class="content-text">{{ row.content }}</div>
|
||||||
|
<div class="comment-meta">
|
||||||
|
<span class="meta-item">
|
||||||
|
<i class="el-icon-thumb" />
|
||||||
|
{{ row.likeCount || 0 }}
|
||||||
|
</span>
|
||||||
|
<span class="meta-item">
|
||||||
|
<i class="el-icon-chat-dot-square" />
|
||||||
|
{{ row.replyCount || 0 }}
|
||||||
|
</span>
|
||||||
|
<el-tag v-if="row.status === 2" size="mini" style="margin-left: 8px" type="success">已展示</el-tag>
|
||||||
|
<el-tag v-else size="mini" style="margin-left: 8px" type="info">隐藏/待审</el-tag>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
|
||||||
|
<el-table-column align="left" label="PK赛目标" min-width="250">
|
||||||
|
<template #default="{ row }">
|
||||||
|
<div v-if="row.pk" class="target-info-cell">
|
||||||
|
<div class="topic-title">[{{ row.pk.topic ? row.pk.topic.title : '未知主题' }}]</div>
|
||||||
|
<div class="item-info">
|
||||||
|
<span>{{ row.pk.leftItem ? row.pk.leftItem.name : '未知' }}</span>
|
||||||
|
<span style="margin: 0 8px; color: #f56c6c; font-weight: bold">VS</span>
|
||||||
|
<span>{{ row.pk.rightItem ? row.pk.rightItem.name : '未知' }}</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div v-else>{{ row.pkId }}</div>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
|
||||||
|
<el-table-column align="left" label="用户信息" min-width="200">
|
||||||
|
<template #default="{ row }">
|
||||||
|
<user-info :user="row.user" :user-id="row.userId" />
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
|
||||||
|
<el-table-column align="center" label="状态切换" width="100">
|
||||||
|
<template #default="{ row }">
|
||||||
|
<el-switch v-model="row.status" :active-value="2" :inactive-value="4" @change="handleToggleStatus(row)" />
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
|
||||||
|
<el-table-column align="center" label="评论时间" prop="createdAt" width="160">
|
||||||
|
<template #default="{ row }">
|
||||||
|
{{ formatTime(row.createdAt) }}
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
</el-table>
|
||||||
|
|
||||||
|
<el-pagination
|
||||||
|
background
|
||||||
|
:current-page="queryForm.pageNo"
|
||||||
|
:layout="layout"
|
||||||
|
:page-size="queryForm.pageSize"
|
||||||
|
:total="total"
|
||||||
|
@current-change="handleCurrentChange"
|
||||||
|
@size-change="handleSizeChange"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<pk-comment-edit ref="commentEdit" @fetch-data="fetchData" />
|
||||||
|
<pk-comment-like-edit ref="likeEdit" @fetch-data="fetchData" />
|
||||||
|
<comment-reply-list ref="replyList" @like="handleLikeFromList" @reply="handleReplyFromList" />
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import { getCommentList, commentStatus, getList as getPkList } from '@/api/rating/pk'
|
||||||
|
import { formatTime } from '@/utils'
|
||||||
|
import { getThumbUrl } from '@/utils/blessing'
|
||||||
|
import UserInfo from '@/components/UserInfo'
|
||||||
|
import PkCommentEdit from './components/PkCommentEdit'
|
||||||
|
import PkCommentLikeEdit from './components/PkCommentLikeEdit'
|
||||||
|
import CommentReplyList from './components/CommentReplyList'
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: 'PkComment',
|
||||||
|
components: { PkCommentEdit, PkCommentLikeEdit, CommentReplyList, UserInfo },
|
||||||
|
directives: {
|
||||||
|
loadmore: {
|
||||||
|
bind(el, binding) {
|
||||||
|
setTimeout(() => {
|
||||||
|
const SELECTWRAP_DOM = el.querySelector('.el-select-dropdown .el-select-dropdown__wrap')
|
||||||
|
if (SELECTWRAP_DOM) {
|
||||||
|
SELECTWRAP_DOM.addEventListener('scroll', function () {
|
||||||
|
const condition = this.scrollHeight - this.scrollTop <= this.clientHeight + 2
|
||||||
|
if (condition) {
|
||||||
|
binding.value()
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}, 0)
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
list: [],
|
||||||
|
listLoading: true,
|
||||||
|
layout: 'total, sizes, prev, pager, next, jumper',
|
||||||
|
total: 0,
|
||||||
|
elementLoadingText: '正在加载...',
|
||||||
|
queryForm: {
|
||||||
|
pageNo: 1,
|
||||||
|
pageSize: 10,
|
||||||
|
pkId: '',
|
||||||
|
status: '',
|
||||||
|
},
|
||||||
|
|
||||||
|
// PK下拉列表状态
|
||||||
|
pkList: [],
|
||||||
|
pkQuery: { pageNo: 1, pageSize: 20 },
|
||||||
|
pkTotal: 0,
|
||||||
|
fetchingPks: false,
|
||||||
|
}
|
||||||
|
},
|
||||||
|
created() {
|
||||||
|
this.fetchPkList()
|
||||||
|
this.fetchData()
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
formatTime,
|
||||||
|
getThumbUrl,
|
||||||
|
getPkLabel(item) {
|
||||||
|
if (!item) return ''
|
||||||
|
const left = item.leftItem ? item.leftItem.name : '未知'
|
||||||
|
const right = item.rightItem ? item.rightItem.name : '未知'
|
||||||
|
return `[${item.topic ? item.topic.title : '未知主题'}] ${left} vs ${right}`
|
||||||
|
},
|
||||||
|
|
||||||
|
// -- PK 列表加载 --
|
||||||
|
async fetchPkList() {
|
||||||
|
if (this.fetchingPks) return
|
||||||
|
this.fetchingPks = true
|
||||||
|
try {
|
||||||
|
const { data } = await getPkList(this.pkQuery)
|
||||||
|
this.pkList = this.pkList.concat(data.list || [])
|
||||||
|
this.pkTotal = data.totalCount || 0
|
||||||
|
} catch (error) {
|
||||||
|
console.error(error)
|
||||||
|
} finally {
|
||||||
|
this.fetchingPks = false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
loadMorePks() {
|
||||||
|
if (this.pkList.length >= this.pkTotal || this.fetchingPks) return
|
||||||
|
this.pkQuery.pageNo += 1
|
||||||
|
this.fetchPkList()
|
||||||
|
},
|
||||||
|
|
||||||
|
handleFilterChange() {
|
||||||
|
this.queryForm.pageNo = 1
|
||||||
|
this.fetchData()
|
||||||
|
},
|
||||||
|
handleSizeChange(val) {
|
||||||
|
this.queryForm.pageSize = val
|
||||||
|
this.fetchData()
|
||||||
|
},
|
||||||
|
handleCurrentChange(val) {
|
||||||
|
this.queryForm.pageNo = val
|
||||||
|
this.fetchData()
|
||||||
|
},
|
||||||
|
queryData() {
|
||||||
|
this.queryForm.pageNo = 1
|
||||||
|
this.fetchData()
|
||||||
|
},
|
||||||
|
async fetchData() {
|
||||||
|
this.listLoading = true
|
||||||
|
try {
|
||||||
|
const params = { ...this.queryForm }
|
||||||
|
if (params.pkId === '') delete params.pkId
|
||||||
|
if (params.status === '') delete params.status
|
||||||
|
|
||||||
|
const { data } = await getCommentList(params)
|
||||||
|
this.list = data.list || []
|
||||||
|
this.total = data.totalCount || 0
|
||||||
|
} catch (error) {
|
||||||
|
console.error(error)
|
||||||
|
} finally {
|
||||||
|
this.listLoading = false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
handleCommentNow() {
|
||||||
|
this.$refs['commentEdit'].showEdit()
|
||||||
|
},
|
||||||
|
handleLike(row) {
|
||||||
|
this.$refs['likeEdit'].showEdit(row)
|
||||||
|
},
|
||||||
|
handleReply(row) {
|
||||||
|
this.$refs['commentEdit'].showEdit(row)
|
||||||
|
},
|
||||||
|
handleViewReplies(row) {
|
||||||
|
this.$refs['replyList'].show(row)
|
||||||
|
},
|
||||||
|
async handleToggleStatus(row) {
|
||||||
|
try {
|
||||||
|
// status: 2为启用,4为禁用
|
||||||
|
const enable = row.status === 2
|
||||||
|
const { msg } = await commentStatus({ id: row.id, enable })
|
||||||
|
this.$baseMessage(msg || '状态切换成功', 'success')
|
||||||
|
} catch (error) {
|
||||||
|
console.error(error)
|
||||||
|
row.status = row.status === 2 ? 4 : 2
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
// 子组件触发的方法
|
||||||
|
handleReplyFromList(row, parentCommentId) {
|
||||||
|
this.$refs['commentEdit'].showEdit(row, parentCommentId)
|
||||||
|
},
|
||||||
|
handleLikeFromList(row) {
|
||||||
|
this.$refs['likeEdit'].showEdit(row)
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
.rating-pk-comment-container {
|
||||||
|
padding: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.comment-content-cell {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content-text {
|
||||||
|
font-size: 14px;
|
||||||
|
color: #303133;
|
||||||
|
margin-bottom: 8px;
|
||||||
|
word-break: break-all;
|
||||||
|
}
|
||||||
|
|
||||||
|
.comment-meta {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
font-size: 12px;
|
||||||
|
color: #909399;
|
||||||
|
}
|
||||||
|
|
||||||
|
.meta-item {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
margin-right: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.meta-item i {
|
||||||
|
margin-right: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.target-info-cell {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
|
||||||
|
.topic-title {
|
||||||
|
font-size: 13px;
|
||||||
|
color: #909399;
|
||||||
|
margin-bottom: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.item-info {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
font-weight: bold;
|
||||||
|
color: #303133;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
84
src/views/rating/pk/list/components/PkParticipantList.vue
Normal file
84
src/views/rating/pk/list/components/PkParticipantList.vue
Normal file
@@ -0,0 +1,84 @@
|
|||||||
|
<template>
|
||||||
|
<el-dialog :title="title" :visible.sync="dialogVisible" width="500px" @close="close">
|
||||||
|
<el-table v-loading="listLoading" :data="list" :element-loading-text="elementLoadingText">
|
||||||
|
<el-table-column align="left" label="投票用户" min-width="150">
|
||||||
|
<template #default="{ row }">
|
||||||
|
<user-info :user="row" :user-id="row.id" />
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
</el-table>
|
||||||
|
|
||||||
|
<el-pagination
|
||||||
|
background
|
||||||
|
:current-page="queryForm.pageNo"
|
||||||
|
:layout="layout"
|
||||||
|
:page-size="queryForm.pageSize"
|
||||||
|
:total="total"
|
||||||
|
@current-change="handleCurrentChange"
|
||||||
|
@size-change="handleSizeChange"
|
||||||
|
/>
|
||||||
|
</el-dialog>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import { getParticipantList } from '@/api/rating/pk'
|
||||||
|
import { getThumbUrl } from '@/utils/blessing'
|
||||||
|
import UserInfo from '@/components/UserInfo'
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: 'PkParticipantList',
|
||||||
|
components: { UserInfo },
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
title: '投票用户列表',
|
||||||
|
dialogVisible: false,
|
||||||
|
list: [],
|
||||||
|
listLoading: false,
|
||||||
|
layout: 'total, prev, pager, next',
|
||||||
|
total: 0,
|
||||||
|
elementLoadingText: '正在加载...',
|
||||||
|
queryForm: {
|
||||||
|
pageNo: 1,
|
||||||
|
pageSize: 10,
|
||||||
|
pkId: '',
|
||||||
|
chooseItemId: '',
|
||||||
|
},
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
getThumbUrl,
|
||||||
|
show(pkId, chooseItemId, titlePrefix) {
|
||||||
|
this.title = `${titlePrefix}的投票用户`
|
||||||
|
this.queryForm.pkId = pkId
|
||||||
|
this.queryForm.chooseItemId = chooseItemId
|
||||||
|
this.queryForm.pageNo = 1
|
||||||
|
this.dialogVisible = true
|
||||||
|
this.fetchData()
|
||||||
|
},
|
||||||
|
close() {
|
||||||
|
this.dialogVisible = false
|
||||||
|
this.list = []
|
||||||
|
},
|
||||||
|
handleSizeChange(val) {
|
||||||
|
this.queryForm.pageSize = val
|
||||||
|
this.fetchData()
|
||||||
|
},
|
||||||
|
handleCurrentChange(val) {
|
||||||
|
this.queryForm.pageNo = val
|
||||||
|
this.fetchData()
|
||||||
|
},
|
||||||
|
async fetchData() {
|
||||||
|
this.listLoading = true
|
||||||
|
try {
|
||||||
|
const { data } = await getParticipantList(this.queryForm)
|
||||||
|
this.list = data.list || []
|
||||||
|
this.total = data.totalCount || 0
|
||||||
|
} catch (error) {
|
||||||
|
console.error(error)
|
||||||
|
} finally {
|
||||||
|
this.listLoading = false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
</script>
|
||||||
138
src/views/rating/pk/list/components/PkVoteEdit.vue
Normal file
138
src/views/rating/pk/list/components/PkVoteEdit.vue
Normal file
@@ -0,0 +1,138 @@
|
|||||||
|
<template>
|
||||||
|
<el-dialog :title="title" :visible.sync="dialogFormVisible" width="500px" @close="close">
|
||||||
|
<el-form ref="form" label-width="80px" :model="form" :rules="rules">
|
||||||
|
<el-form-item label="支持项">
|
||||||
|
<span style="font-weight: bold; color: #409eff">{{ targetName }}</span>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="投票用户" prop="userId">
|
||||||
|
<el-select v-model="form.userId" v-loadmore="loadMoreRobots" filterable placeholder="请选择投票的机器人" style="width: 100%">
|
||||||
|
<el-option v-for="item in robotList" :key="item.id" :label="item.nickname || item.id" :value="item.id">
|
||||||
|
<div style="display: flex; align-items: center">
|
||||||
|
<el-image
|
||||||
|
v-if="item.avatar"
|
||||||
|
:src="getThumbUrl(item.avatar)"
|
||||||
|
style="width: 24px; height: 24px; border-radius: 50%; margin-right: 10px"
|
||||||
|
/>
|
||||||
|
<span>{{ item.nickname || '未知用户' }}</span>
|
||||||
|
</div>
|
||||||
|
</el-option>
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
</el-form>
|
||||||
|
|
||||||
|
<div slot="footer" class="dialog-footer">
|
||||||
|
<el-button @click="close">取 消</el-button>
|
||||||
|
<el-button :loading="saving" type="primary" @click="save">确 定</el-button>
|
||||||
|
</div>
|
||||||
|
</el-dialog>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import { getListBase as getRobotList } from '@/api/system/robot'
|
||||||
|
import { vote } from '@/api/rating/pk'
|
||||||
|
import { getThumbUrl } from '@/utils/blessing'
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: 'PkVoteEdit',
|
||||||
|
directives: {
|
||||||
|
loadmore: {
|
||||||
|
bind(el, binding) {
|
||||||
|
setTimeout(() => {
|
||||||
|
const SELECTWRAP_DOM = el.querySelector('.el-select-dropdown .el-select-dropdown__wrap')
|
||||||
|
if (SELECTWRAP_DOM) {
|
||||||
|
SELECTWRAP_DOM.addEventListener('scroll', function () {
|
||||||
|
const condition = this.scrollHeight - this.scrollTop <= this.clientHeight + 2
|
||||||
|
if (condition) {
|
||||||
|
binding.value()
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}, 0)
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
title: '参与投票',
|
||||||
|
dialogFormVisible: false,
|
||||||
|
saving: false,
|
||||||
|
targetName: '',
|
||||||
|
form: {
|
||||||
|
pkId: '',
|
||||||
|
itemId: '',
|
||||||
|
userId: '',
|
||||||
|
},
|
||||||
|
rules: {
|
||||||
|
userId: [{ required: true, trigger: 'change', message: '请选择投票的机器人' }],
|
||||||
|
},
|
||||||
|
|
||||||
|
// 机器人下拉列表状态
|
||||||
|
robotList: [],
|
||||||
|
robotQuery: {
|
||||||
|
appId: '6a0d7dbe4c5de50f2ba66475',
|
||||||
|
pageNo: 1,
|
||||||
|
pageSize: 20,
|
||||||
|
},
|
||||||
|
robotTotal: 0,
|
||||||
|
fetchingRobots: false,
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
getThumbUrl,
|
||||||
|
showEdit(pkId, itemId, itemName) {
|
||||||
|
this.dialogFormVisible = true
|
||||||
|
this.targetName = itemName
|
||||||
|
this.form = this.$options.data().form
|
||||||
|
this.form.pkId = pkId
|
||||||
|
this.form.itemId = itemId
|
||||||
|
|
||||||
|
// 重置列表并加载第一页
|
||||||
|
this.robotList = []
|
||||||
|
this.robotQuery.pageNo = 1
|
||||||
|
this.robotTotal = 0
|
||||||
|
this.fetchRobotList()
|
||||||
|
},
|
||||||
|
close() {
|
||||||
|
this.$refs['form'].resetFields()
|
||||||
|
this.dialogFormVisible = false
|
||||||
|
},
|
||||||
|
async fetchRobotList() {
|
||||||
|
if (this.fetchingRobots) return
|
||||||
|
this.fetchingRobots = true
|
||||||
|
try {
|
||||||
|
const { data } = await getRobotList(this.robotQuery)
|
||||||
|
this.robotList = this.robotList.concat(data.list || [])
|
||||||
|
this.robotTotal = data.totalCount || 0
|
||||||
|
} catch (error) {
|
||||||
|
console.error(error)
|
||||||
|
} finally {
|
||||||
|
this.fetchingRobots = false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
loadMoreRobots() {
|
||||||
|
if (this.robotList.length >= this.robotTotal || this.fetchingRobots) return
|
||||||
|
this.robotQuery.pageNo += 1
|
||||||
|
this.fetchRobotList()
|
||||||
|
},
|
||||||
|
save() {
|
||||||
|
this.$refs['form'].validate(async (valid) => {
|
||||||
|
if (valid) {
|
||||||
|
this.saving = true
|
||||||
|
try {
|
||||||
|
const { msg } = await vote(this.form)
|
||||||
|
this.$baseMessage(msg || '投票成功', 'success')
|
||||||
|
this.close()
|
||||||
|
this.$emit('fetch-data')
|
||||||
|
} catch (error) {
|
||||||
|
console.error(error)
|
||||||
|
} finally {
|
||||||
|
this.saving = false
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
})
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
</script>
|
||||||
@@ -51,9 +51,18 @@
|
|||||||
<el-image v-if="row.leftItemName && row.leftItemAvatar" class="pk-avatar" :src="getThumbUrl(row.leftItemAvatar)" />
|
<el-image v-if="row.leftItemName && row.leftItemAvatar" class="pk-avatar" :src="getThumbUrl(row.leftItemAvatar)" />
|
||||||
<span class="pk-name">{{ row.leftItemName ? row.leftItemName : '-' }}</span>
|
<span class="pk-name">{{ row.leftItemName ? row.leftItemName : '-' }}</span>
|
||||||
<div class="pk-stats">
|
<div class="pk-stats">
|
||||||
<span class="pk-vote">{{ row.leftVoteCount || 0 }} 票</span>
|
<span
|
||||||
|
class="pk-vote"
|
||||||
|
style="cursor: pointer; text-decoration: underline"
|
||||||
|
@click="handleViewParticipants(row.id, row.leftItemId, row.leftItemName)"
|
||||||
|
>
|
||||||
|
{{ row.leftVoteCount || 0 }} 票
|
||||||
|
</span>
|
||||||
<span class="pk-rate">({{ calculateRate(row.leftVoteCount, row.voteCount) }})</span>
|
<span class="pk-rate">({{ calculateRate(row.leftVoteCount, row.voteCount) }})</span>
|
||||||
</div>
|
</div>
|
||||||
|
<div style="margin-top: 5px">
|
||||||
|
<el-button plain size="mini" type="primary" @click="handleVote(row.id, row.leftItemId, row.leftItemName)">支持</el-button>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="pk-vs-wrapper">
|
<div class="pk-vs-wrapper">
|
||||||
<div class="pk-vs">VS</div>
|
<div class="pk-vs">VS</div>
|
||||||
@@ -63,9 +72,18 @@
|
|||||||
<el-image v-if="row.rightItemName && row.rightItemAvatar" class="pk-avatar" :src="getThumbUrl(row.rightItemAvatar)" />
|
<el-image v-if="row.rightItemName && row.rightItemAvatar" class="pk-avatar" :src="getThumbUrl(row.rightItemAvatar)" />
|
||||||
<span class="pk-name">{{ row.rightItemName ? row.rightItemName : '-' }}</span>
|
<span class="pk-name">{{ row.rightItemName ? row.rightItemName : '-' }}</span>
|
||||||
<div class="pk-stats">
|
<div class="pk-stats">
|
||||||
<span class="pk-vote">{{ row.rightVoteCount || 0 }} 票</span>
|
<span
|
||||||
|
class="pk-vote"
|
||||||
|
style="cursor: pointer; text-decoration: underline"
|
||||||
|
@click="handleViewParticipants(row.id, row.rightItemId, row.rightItemName)"
|
||||||
|
>
|
||||||
|
{{ row.rightVoteCount || 0 }} 票
|
||||||
|
</span>
|
||||||
<span class="pk-rate">({{ calculateRate(row.rightVoteCount, row.voteCount) }})</span>
|
<span class="pk-rate">({{ calculateRate(row.rightVoteCount, row.voteCount) }})</span>
|
||||||
</div>
|
</div>
|
||||||
|
<div style="margin-top: 5px">
|
||||||
|
<el-button plain size="mini" type="primary" @click="handleVote(row.id, row.rightItemId, row.rightItemName)">支持</el-button>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
@@ -89,6 +107,8 @@
|
|||||||
/>
|
/>
|
||||||
|
|
||||||
<pk-generate ref="generate" @fetch-data="fetchData" />
|
<pk-generate ref="generate" @fetch-data="fetchData" />
|
||||||
|
<pk-participant-list ref="participantList" />
|
||||||
|
<pk-vote-edit ref="voteEdit" @fetch-data="fetchData" />
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@@ -99,10 +119,12 @@
|
|||||||
import { formatTime } from '@/utils'
|
import { formatTime } from '@/utils'
|
||||||
import { getThumbUrl } from '@/utils/blessing'
|
import { getThumbUrl } from '@/utils/blessing'
|
||||||
import PkGenerate from './components/PkGenerate'
|
import PkGenerate from './components/PkGenerate'
|
||||||
|
import PkParticipantList from './components/PkParticipantList'
|
||||||
|
import PkVoteEdit from './components/PkVoteEdit'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'RatingPkListIndex',
|
name: 'RatingPkListIndex',
|
||||||
components: { PkGenerate },
|
components: { PkGenerate, PkParticipantList, PkVoteEdit },
|
||||||
directives: {
|
directives: {
|
||||||
loadmore: {
|
loadmore: {
|
||||||
bind(el, binding) {
|
bind(el, binding) {
|
||||||
@@ -253,6 +275,12 @@
|
|||||||
const rate = ((count || 0) / total) * 100
|
const rate = ((count || 0) / total) * 100
|
||||||
return `${rate.toFixed(1)}%`
|
return `${rate.toFixed(1)}%`
|
||||||
},
|
},
|
||||||
|
handleViewParticipants(pkId, chooseItemId, itemName) {
|
||||||
|
this.$refs['participantList'].show(pkId, chooseItemId, itemName)
|
||||||
|
},
|
||||||
|
handleVote(pkId, itemId, itemName) {
|
||||||
|
this.$refs['voteEdit'].showEdit(pkId, itemId, itemName)
|
||||||
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
@@ -1,10 +1,10 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="rating-topic-container">
|
<div class="rating-topic-container">
|
||||||
<vab-query-form>
|
<vab-query-form>
|
||||||
<vab-query-form-left-panel :span="12">
|
<vab-query-form-left-panel>
|
||||||
<el-button icon="el-icon-plus" type="primary" @click="handleAdd">创建话题</el-button>
|
<el-button icon="el-icon-plus" type="primary" @click="handleAdd">创建话题</el-button>
|
||||||
</vab-query-form-left-panel>
|
</vab-query-form-left-panel>
|
||||||
<vab-query-form-right-panel :span="12">
|
<vab-query-form-left-panel>
|
||||||
<el-form :inline="true" :model="queryForm" @submit.native.prevent>
|
<el-form :inline="true" :model="queryForm" @submit.native.prevent>
|
||||||
<el-form-item>
|
<el-form-item>
|
||||||
<el-select v-model="queryForm.status" clearable placeholder="请选择状态" @change="queryData">
|
<el-select v-model="queryForm.status" clearable placeholder="请选择状态" @change="queryData">
|
||||||
@@ -21,7 +21,7 @@
|
|||||||
<el-button icon="el-icon-search" type="primary" @click="queryData">查询</el-button>
|
<el-button icon="el-icon-search" type="primary" @click="queryData">查询</el-button>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
</vab-query-form-right-panel>
|
</vab-query-form-left-panel>
|
||||||
</vab-query-form>
|
</vab-query-form>
|
||||||
|
|
||||||
<el-table v-loading="listLoading" :data="list" :element-loading-text="elementLoadingText">
|
<el-table v-loading="listLoading" :data="list" :element-loading-text="elementLoadingText">
|
||||||
@@ -46,10 +46,10 @@
|
|||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
|
|
||||||
<el-table-column align="center" label="允许评论" width="100">
|
<el-table-column align="left" label="用户信息" min-width="200" width="300">
|
||||||
<template #default="{ row }">
|
<template #default="{ row }">
|
||||||
<el-tag v-if="row.allowComment === 1 || row.allowComment === true" type="success">是</el-tag>
|
<user-info v-if="row.user" :user="row.user" :user-id="row.userId" />
|
||||||
<el-tag v-else type="danger">否</el-tag>
|
<span v-else>系统创建</span>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
|
|
||||||
@@ -125,10 +125,11 @@
|
|||||||
import { formatTime } from '@/utils'
|
import { formatTime } from '@/utils'
|
||||||
import { getThumbUrl } from '@/utils/blessing'
|
import { getThumbUrl } from '@/utils/blessing'
|
||||||
import TopicEdit from './components/TopicEdit'
|
import TopicEdit from './components/TopicEdit'
|
||||||
|
import UserInfo from '@/components/UserInfo'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'RatingTopicIndex',
|
name: 'RatingTopicIndex',
|
||||||
components: { TopicEdit },
|
components: { TopicEdit, UserInfo },
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
list: [],
|
list: [],
|
||||||
@@ -145,6 +146,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
|
if (this.$route.query.topicId) {
|
||||||
|
this.queryForm.keyword = this.$route.query.topicId
|
||||||
|
}
|
||||||
this.fetchData()
|
this.fetchData()
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
|||||||
@@ -16,7 +16,7 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { doEdit } from '@/api/rating/topicCategory'
|
import { doEdit, doAdd } from '@/api/rating/topicCategory'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'TopicCategoryEdit',
|
name: 'TopicCategoryEdit',
|
||||||
@@ -38,12 +38,11 @@
|
|||||||
methods: {
|
methods: {
|
||||||
showEdit(row) {
|
showEdit(row) {
|
||||||
if (!row) {
|
if (!row) {
|
||||||
// 当前接口似乎只提供了编辑,如果需要新增可在此扩展
|
this.title = '创建分类'
|
||||||
this.title = '添加话题分类'
|
|
||||||
this.id = ''
|
this.id = ''
|
||||||
this.form = this.$options.data().form
|
this.form = this.$options.data().form
|
||||||
} else {
|
} else {
|
||||||
this.title = '编辑话题分类'
|
this.title = '编辑分类'
|
||||||
this.id = row.id
|
this.id = row.id
|
||||||
this.form = {
|
this.form = {
|
||||||
title: row.title || '',
|
title: row.title || '',
|
||||||
@@ -67,6 +66,9 @@
|
|||||||
if (this.id) {
|
if (this.id) {
|
||||||
const { msg } = await doEdit(this.id, this.form)
|
const { msg } = await doEdit(this.id, this.form)
|
||||||
this.$baseMessage(msg || '编辑成功', 'success')
|
this.$baseMessage(msg || '编辑成功', 'success')
|
||||||
|
} else {
|
||||||
|
const { msg } = await doAdd({ title: this.form.title })
|
||||||
|
this.$baseMessage(msg || '创建成功', 'success')
|
||||||
}
|
}
|
||||||
this.$emit('fetch-data')
|
this.$emit('fetch-data')
|
||||||
this.close()
|
this.close()
|
||||||
|
|||||||
@@ -1,7 +1,10 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="topic-category-container">
|
<div class="topic-category-container">
|
||||||
<vab-query-form>
|
<vab-query-form>
|
||||||
<vab-query-form-right-panel :span="24">
|
<vab-query-form-left-panel :span="12">
|
||||||
|
<el-button icon="el-icon-plus" type="primary" @click="handleAdd">创建类别</el-button>
|
||||||
|
</vab-query-form-left-panel>
|
||||||
|
<vab-query-form-right-panel :span="12">
|
||||||
<el-form :inline="true" :model="queryForm" @submit.native.prevent>
|
<el-form :inline="true" :model="queryForm" @submit.native.prevent>
|
||||||
<el-form-item>
|
<el-form-item>
|
||||||
<el-input v-model.trim="queryForm.keyword" clearable placeholder="请输入分类名称" />
|
<el-input v-model.trim="queryForm.keyword" clearable placeholder="请输入分类名称" />
|
||||||
@@ -75,6 +78,9 @@
|
|||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
formatTime,
|
formatTime,
|
||||||
|
handleAdd() {
|
||||||
|
this.$refs['edit'].showEdit()
|
||||||
|
},
|
||||||
handleSizeChange(val) {
|
handleSizeChange(val) {
|
||||||
this.queryForm.pageSize = val
|
this.queryForm.pageSize = val
|
||||||
this.fetchData()
|
this.fetchData()
|
||||||
|
|||||||
@@ -18,7 +18,7 @@
|
|||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
|
||||||
<el-form-item label="评价主题" prop="topicId">
|
<el-form-item v-if="!isReply" label="评价主题" prop="topicId">
|
||||||
<el-select
|
<el-select
|
||||||
v-model="form.topicId"
|
v-model="form.topicId"
|
||||||
v-loadmore="loadMoreTopics"
|
v-loadmore="loadMoreTopics"
|
||||||
@@ -31,7 +31,7 @@
|
|||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
|
||||||
<el-form-item label="评价项" prop="itemId">
|
<el-form-item v-if="!isReply" label="评价项" prop="itemId">
|
||||||
<el-select
|
<el-select
|
||||||
v-model="form.itemId"
|
v-model="form.itemId"
|
||||||
v-loadmore="loadMoreItems"
|
v-loadmore="loadMoreItems"
|
||||||
@@ -54,7 +54,7 @@
|
|||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
|
||||||
<el-form-item label="评论内容" prop="content">
|
<el-form-item label="评论内容" prop="content">
|
||||||
<el-input v-model="form.content" maxlength="500" placeholder="请输入您的评论文字" :rows="4" show-word-limit type="textarea" />
|
<el-input v-model="form.content" maxlength="500" :placeholder="contentPlaceholder" :rows="4" show-word-limit type="textarea" />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
|
|
||||||
@@ -96,11 +96,15 @@
|
|||||||
title: '立即评论',
|
title: '立即评论',
|
||||||
dialogFormVisible: false,
|
dialogFormVisible: false,
|
||||||
saving: false,
|
saving: false,
|
||||||
|
isReply: false,
|
||||||
|
contentPlaceholder: '请输入您的评论文字',
|
||||||
form: {
|
form: {
|
||||||
userId: '',
|
userId: '',
|
||||||
topicId: '',
|
topicId: '',
|
||||||
itemId: '',
|
itemId: '',
|
||||||
content: '',
|
content: '',
|
||||||
|
parentCommentId: '',
|
||||||
|
replyToCommentId: '',
|
||||||
},
|
},
|
||||||
rules: {
|
rules: {
|
||||||
userId: [{ required: true, trigger: 'change', message: '请选择用户' }],
|
userId: [{ required: true, trigger: 'change', message: '请选择用户' }],
|
||||||
@@ -130,11 +134,31 @@
|
|||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
getThumbUrl,
|
getThumbUrl,
|
||||||
showEdit() {
|
showEdit(row = null, parentCommentId = null) {
|
||||||
this.title = '立即评论'
|
|
||||||
this.dialogFormVisible = true
|
this.dialogFormVisible = true
|
||||||
this.form = this.$options.data().form
|
this.form = this.$options.data().form
|
||||||
|
|
||||||
|
if (row) {
|
||||||
|
this.isReply = true
|
||||||
|
this.title = '回复评论'
|
||||||
|
this.contentPlaceholder = `回复 @${row.user ? row.user.nickname : '未知用户'}:`
|
||||||
|
|
||||||
|
this.form.parentCommentId = parentCommentId || row.id
|
||||||
|
this.form.replyToCommentId = row.id
|
||||||
|
|
||||||
|
if (row.rating) {
|
||||||
|
this.form.topicId = row.rating.topicId || row.rating.topic?.id || row.topicId
|
||||||
|
this.form.itemId = row.rating.itemId || row.rating.item?.id || row.itemId
|
||||||
|
} else {
|
||||||
|
this.form.topicId = row.topicId
|
||||||
|
this.form.itemId = row.itemId
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
this.isReply = false
|
||||||
|
this.title = '立即评论'
|
||||||
|
this.contentPlaceholder = '请输入您的评论文字'
|
||||||
|
}
|
||||||
|
|
||||||
// 重置列表数据
|
// 重置列表数据
|
||||||
this.userList = []
|
this.userList = []
|
||||||
this.userQuery.pageNo = 1
|
this.userQuery.pageNo = 1
|
||||||
@@ -151,7 +175,9 @@
|
|||||||
|
|
||||||
// 初始化加载第一页数据
|
// 初始化加载第一页数据
|
||||||
this.fetchUserList()
|
this.fetchUserList()
|
||||||
|
if (!this.isReply) {
|
||||||
this.fetchTopicList()
|
this.fetchTopicList()
|
||||||
|
}
|
||||||
},
|
},
|
||||||
close() {
|
close() {
|
||||||
this.$refs['form'].resetFields()
|
this.$refs['form'].resetFields()
|
||||||
|
|||||||
@@ -0,0 +1,176 @@
|
|||||||
|
<template>
|
||||||
|
<el-dialog :title="title" :visible.sync="dialogVisible" width="900px" @close="close">
|
||||||
|
<el-table v-loading="listLoading" :data="list" :element-loading-text="elementLoadingText">
|
||||||
|
<el-table-column align="center" fixed="left" label="操作" width="120">
|
||||||
|
<template #default="{ row }">
|
||||||
|
<el-button type="text" @click="handleLike(row)">点赞</el-button>
|
||||||
|
<el-button type="text" @click="handleReply(row)">回复</el-button>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
|
||||||
|
<el-table-column align="left" label="回复内容" min-width="250">
|
||||||
|
<template #default="{ row }">
|
||||||
|
<div class="comment-content-cell">
|
||||||
|
<div v-if="row.replyToUser" class="reply-target">回复 @{{ row.replyToUser.nickname || '未知用户' }}:</div>
|
||||||
|
<div class="content-text">{{ row.content }}</div>
|
||||||
|
<div class="comment-meta">
|
||||||
|
<span class="meta-item">
|
||||||
|
<i class="el-icon-thumb" />
|
||||||
|
{{ row.likeCount || 0 }}
|
||||||
|
</span>
|
||||||
|
<el-tag v-if="row.status === 2" size="mini" style="margin-left: 8px" type="success">已展示</el-tag>
|
||||||
|
<el-tag v-else size="mini" style="margin-left: 8px" type="info">隐藏/待审</el-tag>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
|
||||||
|
<el-table-column align="left" label="用户信息" min-width="180">
|
||||||
|
<template #default="{ row }">
|
||||||
|
<user-info :user="row.user" :user-id="row.userId" />
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
|
||||||
|
<el-table-column align="center" label="状态切换" width="80">
|
||||||
|
<template #default="{ row }">
|
||||||
|
<el-switch v-model="row.status" :active-value="2" :inactive-value="4" @change="handleToggleStatus(row)" />
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
|
||||||
|
<el-table-column align="center" label="时间" prop="createdAt" width="160">
|
||||||
|
<template #default="{ row }">
|
||||||
|
{{ formatTime(row.createdAt) }}
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
</el-table>
|
||||||
|
|
||||||
|
<el-pagination
|
||||||
|
background
|
||||||
|
:current-page="queryForm.pageNo"
|
||||||
|
:layout="layout"
|
||||||
|
:page-size="queryForm.pageSize"
|
||||||
|
:total="total"
|
||||||
|
@current-change="handleCurrentChange"
|
||||||
|
@size-change="handleSizeChange"
|
||||||
|
/>
|
||||||
|
</el-dialog>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import { userCommentList, commentStatus } from '@/api/rating/topicOperate'
|
||||||
|
import { formatTime } from '@/utils'
|
||||||
|
import { getThumbUrl } from '@/utils/blessing'
|
||||||
|
import UserInfo from '@/components/UserInfo'
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: 'RecordCommentReplyList',
|
||||||
|
components: { UserInfo },
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
title: '回复列表',
|
||||||
|
dialogVisible: false,
|
||||||
|
list: [],
|
||||||
|
listLoading: false,
|
||||||
|
layout: 'total, prev, pager, next',
|
||||||
|
total: 0,
|
||||||
|
elementLoadingText: '正在加载...',
|
||||||
|
queryForm: {
|
||||||
|
pageNo: 1,
|
||||||
|
pageSize: 10,
|
||||||
|
rootCommentId: '',
|
||||||
|
},
|
||||||
|
parentRow: null,
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
formatTime,
|
||||||
|
getThumbUrl,
|
||||||
|
show(row) {
|
||||||
|
this.parentRow = row
|
||||||
|
this.title = `回复列表`
|
||||||
|
this.dialogVisible = true
|
||||||
|
this.queryForm.rootCommentId = row.id
|
||||||
|
this.queryForm.pageNo = 1
|
||||||
|
this.fetchData()
|
||||||
|
},
|
||||||
|
close() {
|
||||||
|
this.dialogVisible = false
|
||||||
|
this.list = []
|
||||||
|
},
|
||||||
|
handleSizeChange(val) {
|
||||||
|
this.queryForm.pageSize = val
|
||||||
|
this.fetchData()
|
||||||
|
},
|
||||||
|
handleCurrentChange(val) {
|
||||||
|
this.queryForm.pageNo = val
|
||||||
|
this.fetchData()
|
||||||
|
},
|
||||||
|
async fetchData() {
|
||||||
|
this.listLoading = true
|
||||||
|
try {
|
||||||
|
const { data } = await userCommentList(this.queryForm)
|
||||||
|
this.list = data.list || []
|
||||||
|
this.total = data.totalCount || 0
|
||||||
|
} catch (error) {
|
||||||
|
console.error(error)
|
||||||
|
} finally {
|
||||||
|
this.listLoading = false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
handleLike(row) {
|
||||||
|
this.$emit('like', row)
|
||||||
|
},
|
||||||
|
handleReply(row) {
|
||||||
|
// 传递当前行作为被回复对象,同时传递根评论ID
|
||||||
|
this.$emit('reply', row, this.queryForm.rootCommentId)
|
||||||
|
},
|
||||||
|
async handleToggleStatus(row) {
|
||||||
|
try {
|
||||||
|
const enable = row.status === 2
|
||||||
|
const { msg } = await commentStatus({ id: row.id, enable })
|
||||||
|
this.$baseMessage(msg || '状态切换成功', 'success')
|
||||||
|
} catch (error) {
|
||||||
|
console.error(error)
|
||||||
|
row.status = row.status === 2 ? 4 : 2
|
||||||
|
}
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
.comment-content-cell {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
|
||||||
|
.reply-target {
|
||||||
|
font-size: 12px;
|
||||||
|
color: #409eff;
|
||||||
|
margin-bottom: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content-text {
|
||||||
|
font-size: 14px;
|
||||||
|
color: #303133;
|
||||||
|
margin-bottom: 8px;
|
||||||
|
word-break: break-all;
|
||||||
|
}
|
||||||
|
|
||||||
|
.comment-meta {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
font-size: 12px;
|
||||||
|
color: #909399;
|
||||||
|
}
|
||||||
|
|
||||||
|
.meta-item {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
margin-right: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.meta-item i {
|
||||||
|
margin-right: 4px;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
@@ -83,9 +83,11 @@
|
|||||||
</vab-query-form>
|
</vab-query-form>
|
||||||
|
|
||||||
<el-table v-loading="listLoading" :data="list" :element-loading-text="elementLoadingText">
|
<el-table v-loading="listLoading" :data="list" :element-loading-text="elementLoadingText">
|
||||||
<el-table-column align="center" fixed="left" label="操作" width="100">
|
<el-table-column align="center" fixed="left" label="操作" width="160">
|
||||||
<template #default="{ row }">
|
<template #default="{ row }">
|
||||||
<el-button type="text" @click="handleLike(row)">点赞</el-button>
|
<el-button type="text" @click="handleLike(row)">点赞</el-button>
|
||||||
|
<el-button type="text" @click="handleReply(row)">回复</el-button>
|
||||||
|
<el-button v-if="row.replyCount > 0" type="text" @click="handleViewReplies(row)">查看回复</el-button>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
|
|
||||||
@@ -130,26 +132,13 @@
|
|||||||
|
|
||||||
<el-table-column align="left" label="用户信息" min-width="200">
|
<el-table-column align="left" label="用户信息" min-width="200">
|
||||||
<template #default="{ row }">
|
<template #default="{ row }">
|
||||||
<div v-if="row.user" class="user-info-cell">
|
<user-info :user="row.user" :user-id="row.userId" />
|
||||||
<el-image
|
</template>
|
||||||
v-if="row.user.avatar"
|
</el-table-column>
|
||||||
class="user-avatar"
|
|
||||||
:preview-src-list="[row.user.avatar]"
|
<el-table-column align="center" label="状态切换" width="100">
|
||||||
:src="getThumbUrl(row.user.avatar)"
|
<template #default="{ row }">
|
||||||
/>
|
<el-switch v-model="row.status" :active-value="2" :inactive-value="4" @change="handleToggleStatus(row)" />
|
||||||
<div v-else class="user-avatar-placeholder"><i class="el-icon-user" /></div>
|
|
||||||
<div class="user-details">
|
|
||||||
<div class="user-nickname">
|
|
||||||
{{ row.user.nickname || '未知用户' }}
|
|
||||||
<el-tag v-if="row.user.isRobot" size="mini" style="margin-left: 4px" type="info">机器人</el-tag>
|
|
||||||
<el-tag v-else size="mini" style="margin-left: 4px" type="success">真人</el-tag>
|
|
||||||
</div>
|
|
||||||
<div class="user-id">{{ row.user.id }}</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div v-else class="user-details">
|
|
||||||
<div class="user-id">{{ row.userId }}</div>
|
|
||||||
</div>
|
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
|
|
||||||
@@ -172,22 +161,25 @@
|
|||||||
|
|
||||||
<record-comment-edit ref="commentEdit" @fetch-data="fetchData" />
|
<record-comment-edit ref="commentEdit" @fetch-data="fetchData" />
|
||||||
<record-comment-like-edit ref="likeEdit" @fetch-data="fetchData" />
|
<record-comment-like-edit ref="likeEdit" @fetch-data="fetchData" />
|
||||||
|
<record-comment-reply-list ref="replyList" @like="handleLikeFromList" @reply="handleReplyFromList" />
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { userCommentList } from '@/api/rating/topicOperate'
|
import { userCommentList, commentStatus } from '@/api/rating/topicOperate'
|
||||||
import { getList as getUserList } from '@/api/system/user'
|
import { getList as getUserList } from '@/api/system/user'
|
||||||
import { getList as getTopicList } from '@/api/rating/topic'
|
import { getList as getTopicList } from '@/api/rating/topic'
|
||||||
import { getList as getItemList } from '@/api/rating/topicItem'
|
import { getList as getItemList } from '@/api/rating/topicItem'
|
||||||
import { formatTime } from '@/utils'
|
import { formatTime } from '@/utils'
|
||||||
import { getThumbUrl } from '@/utils/blessing'
|
import { getThumbUrl } from '@/utils/blessing'
|
||||||
|
import UserInfo from '@/components/UserInfo'
|
||||||
import RecordCommentEdit from './components/RecordCommentEdit'
|
import RecordCommentEdit from './components/RecordCommentEdit'
|
||||||
import RecordCommentLikeEdit from './components/RecordCommentLikeEdit'
|
import RecordCommentLikeEdit from './components/RecordCommentLikeEdit'
|
||||||
|
import RecordCommentReplyList from './components/RecordCommentReplyList'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'RatingTopicCommentIndex',
|
name: 'RatingTopicCommentIndex',
|
||||||
components: { RecordCommentEdit, RecordCommentLikeEdit },
|
components: { RecordCommentEdit, RecordCommentLikeEdit, RecordCommentReplyList, UserInfo },
|
||||||
directives: {
|
directives: {
|
||||||
loadmore: {
|
loadmore: {
|
||||||
bind(el, binding) {
|
bind(el, binding) {
|
||||||
@@ -351,9 +343,32 @@
|
|||||||
handleLike(row) {
|
handleLike(row) {
|
||||||
this.$refs['likeEdit'].showEdit(row)
|
this.$refs['likeEdit'].showEdit(row)
|
||||||
},
|
},
|
||||||
|
handleReply(row) {
|
||||||
|
this.$refs['commentEdit'].showEdit(row)
|
||||||
|
},
|
||||||
|
handleViewReplies(row) {
|
||||||
|
this.$refs['replyList'].show(row)
|
||||||
|
},
|
||||||
handleCommentNow() {
|
handleCommentNow() {
|
||||||
this.$refs['commentEdit'].showEdit()
|
this.$refs['commentEdit'].showEdit()
|
||||||
},
|
},
|
||||||
|
async handleToggleStatus(row) {
|
||||||
|
try {
|
||||||
|
const enable = row.status === 2
|
||||||
|
const { msg } = await commentStatus({ id: row.id, enable })
|
||||||
|
this.$baseMessage(msg || '状态切换成功', 'success')
|
||||||
|
} catch (error) {
|
||||||
|
console.error(error)
|
||||||
|
row.status = row.status === 2 ? 4 : 2
|
||||||
|
}
|
||||||
|
},
|
||||||
|
// 子组件触发的方法
|
||||||
|
handleReplyFromList(row, parentCommentId) {
|
||||||
|
this.$refs['commentEdit'].showEdit(row, parentCommentId)
|
||||||
|
},
|
||||||
|
handleLikeFromList(row) {
|
||||||
|
this.$refs['likeEdit'].showEdit(row)
|
||||||
|
},
|
||||||
handleSizeChange(val) {
|
handleSizeChange(val) {
|
||||||
this.queryForm.pageSize = val
|
this.queryForm.pageSize = val
|
||||||
this.fetchData()
|
this.fetchData()
|
||||||
@@ -420,45 +435,6 @@
|
|||||||
margin-right: 4px;
|
margin-right: 4px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* 用户信息列样式 */
|
|
||||||
.user-info-cell {
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
}
|
|
||||||
.user-avatar,
|
|
||||||
.user-avatar-placeholder {
|
|
||||||
width: 40px;
|
|
||||||
height: 40px;
|
|
||||||
border-radius: 50%;
|
|
||||||
margin-right: 12px;
|
|
||||||
flex-shrink: 0;
|
|
||||||
}
|
|
||||||
.user-avatar-placeholder {
|
|
||||||
background-color: #f0f2f5;
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
color: #909399;
|
|
||||||
font-size: 20px;
|
|
||||||
}
|
|
||||||
.user-details {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
.user-nickname {
|
|
||||||
font-weight: bold;
|
|
||||||
color: #303133;
|
|
||||||
margin-bottom: 4px;
|
|
||||||
white-space: nowrap;
|
|
||||||
overflow: hidden;
|
|
||||||
text-overflow: ellipsis;
|
|
||||||
}
|
|
||||||
.user-id {
|
|
||||||
font-size: 12px;
|
|
||||||
color: #909399;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* 评价目标列样式 */
|
/* 评价目标列样式 */
|
||||||
.target-info-cell {
|
.target-info-cell {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|||||||
@@ -61,6 +61,13 @@
|
|||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
|
|
||||||
|
<el-table-column align="left" label="用户信息" min-width="200" width="300">
|
||||||
|
<template #default="{ row }">
|
||||||
|
<user-info v-if="row.user" :user="row.user" :user-id="row.userId" />
|
||||||
|
<span v-else>系统创建</span>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
|
||||||
<el-table-column align="left" label="分数统计">
|
<el-table-column align="left" label="分数统计">
|
||||||
<template #default="{ row }">
|
<template #default="{ row }">
|
||||||
<div class="stat-cell">
|
<div class="stat-cell">
|
||||||
@@ -150,10 +157,11 @@
|
|||||||
import { getThumbUrl } from '@/utils/blessing'
|
import { getThumbUrl } from '@/utils/blessing'
|
||||||
import TopicItemRatingEdit from './components/TopicItemRatingEdit'
|
import TopicItemRatingEdit from './components/TopicItemRatingEdit'
|
||||||
import TopicItemCommentEdit from './components/TopicItemCommentEdit'
|
import TopicItemCommentEdit from './components/TopicItemCommentEdit'
|
||||||
|
import UserInfo from '@/components/UserInfo'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'RatingTopicItemIndex',
|
name: 'RatingTopicItemIndex',
|
||||||
components: { TopicItemRatingEdit, TopicItemCommentEdit },
|
components: { TopicItemRatingEdit, TopicItemCommentEdit, UserInfo },
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
list: [],
|
list: [],
|
||||||
|
|||||||
171
src/views/rating/topicItemReview/index.vue
Normal file
171
src/views/rating/topicItemReview/index.vue
Normal file
@@ -0,0 +1,171 @@
|
|||||||
|
<template>
|
||||||
|
<div class="rating-topic-item-review-container">
|
||||||
|
<el-table v-loading="listLoading" :data="list" :element-loading-text="elementLoadingText">
|
||||||
|
<el-table-column align="left" label="评分项" min-width="260">
|
||||||
|
<template #default="{ row }">
|
||||||
|
<div class="item-info-cell">
|
||||||
|
<el-image v-if="row.avatarUrl" class="item-avatar" :src="getThumbUrl(row.avatarUrl)" />
|
||||||
|
<div v-else class="item-avatar-placeholder"><i class="el-icon-picture-outline" /></div>
|
||||||
|
<div class="item-details">
|
||||||
|
<div class="item-name">{{ row.name || '-' }}</div>
|
||||||
|
<div class="item-sub" :title="row.topic && row.topic.title ? row.topic.title : row.topicId">
|
||||||
|
<span class="sub-label">所属话题:</span>
|
||||||
|
<span class="sub-value">{{ row.topic && row.topic.title ? row.topic.title : row.topicId || '-' }}</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
|
||||||
|
<el-table-column align="center" label="状态" width="100">
|
||||||
|
<template #default="{ row }">
|
||||||
|
<el-tag v-if="row.status === 1" type="warning">审核中</el-tag>
|
||||||
|
<el-tag v-else-if="row.status === 2" type="success">已通过</el-tag>
|
||||||
|
<el-tag v-else-if="row.status === 3" type="danger">已拒绝</el-tag>
|
||||||
|
<el-tag v-else-if="row.status === 4" type="info">禁用</el-tag>
|
||||||
|
<span v-else>-</span>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
|
||||||
|
<el-table-column align="center" label="创建时间" prop="createdAt" width="160">
|
||||||
|
<template #default="{ row }">
|
||||||
|
{{ formatTime(row.createdAt) }}
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
|
||||||
|
<el-table-column align="center" fixed="right" label="操作" width="180">
|
||||||
|
<template #default="{ row }">
|
||||||
|
<el-button size="mini" type="success" @click="handleReview(row, 2)">通过</el-button>
|
||||||
|
<el-button size="mini" type="danger" @click="handleReview(row, 3)">拒绝</el-button>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
</el-table>
|
||||||
|
|
||||||
|
<el-pagination
|
||||||
|
background
|
||||||
|
:current-page="queryForm.pageNo"
|
||||||
|
:layout="layout"
|
||||||
|
:page-size="queryForm.pageSize"
|
||||||
|
:total="total"
|
||||||
|
@current-change="handleCurrentChange"
|
||||||
|
@size-change="handleSizeChange"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<review-edit ref="edit" @fetch-data="fetchData" />
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import { getPendingList } from '@/api/rating/topicItem'
|
||||||
|
import { formatTime } from '@/utils'
|
||||||
|
import { getThumbUrl } from '@/utils/blessing'
|
||||||
|
import ReviewEdit from '@/views/rating/topicReview/components/ReviewEdit'
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: 'RatingTopicItemReviewIndex',
|
||||||
|
components: { ReviewEdit },
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
list: [],
|
||||||
|
listLoading: true,
|
||||||
|
layout: 'total, sizes, prev, pager, next, jumper',
|
||||||
|
total: 0,
|
||||||
|
elementLoadingText: '正在加载...',
|
||||||
|
queryForm: {
|
||||||
|
pageNo: 1,
|
||||||
|
pageSize: 10,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
},
|
||||||
|
created() {
|
||||||
|
this.fetchData()
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
formatTime,
|
||||||
|
getThumbUrl,
|
||||||
|
handleSizeChange(val) {
|
||||||
|
this.queryForm.pageSize = val
|
||||||
|
this.fetchData()
|
||||||
|
},
|
||||||
|
handleCurrentChange(val) {
|
||||||
|
this.queryForm.pageNo = val
|
||||||
|
this.fetchData()
|
||||||
|
},
|
||||||
|
async fetchData() {
|
||||||
|
this.listLoading = true
|
||||||
|
try {
|
||||||
|
const { data } = await getPendingList(this.queryForm)
|
||||||
|
this.list = data.list || []
|
||||||
|
this.total = data.totalCount || 0
|
||||||
|
} catch (error) {
|
||||||
|
console.error(error)
|
||||||
|
} finally {
|
||||||
|
this.listLoading = false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
handleReview(row, status) {
|
||||||
|
this.$refs['edit'].showEdit(row, status, 'topicItem')
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
.rating-topic-item-review-container {
|
||||||
|
padding: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.item-info-cell {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.item-avatar,
|
||||||
|
.item-avatar-placeholder {
|
||||||
|
width: 40px;
|
||||||
|
height: 40px;
|
||||||
|
border-radius: 50%;
|
||||||
|
margin-right: 12px;
|
||||||
|
flex-shrink: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.item-avatar-placeholder {
|
||||||
|
background-color: #f0f2f5;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
color: #909399;
|
||||||
|
font-size: 18px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.item-details {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.item-name {
|
||||||
|
font-weight: bold;
|
||||||
|
color: #303133;
|
||||||
|
margin-bottom: 4px;
|
||||||
|
white-space: nowrap;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
}
|
||||||
|
|
||||||
|
.item-sub {
|
||||||
|
font-size: 12px;
|
||||||
|
color: #909399;
|
||||||
|
white-space: nowrap;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sub-label {
|
||||||
|
margin-right: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sub-value {
|
||||||
|
color: #606266;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
198
src/views/rating/topicItemReviewLog/index.vue
Normal file
198
src/views/rating/topicItemReviewLog/index.vue
Normal file
@@ -0,0 +1,198 @@
|
|||||||
|
<template>
|
||||||
|
<div class="rating-review-log-container">
|
||||||
|
<el-table v-loading="listLoading" :data="list" :element-loading-text="elementLoadingText">
|
||||||
|
<el-table-column align="center" label="审核类型" width="100">
|
||||||
|
<template #default="{ row }">
|
||||||
|
<el-tag v-if="row.type === 'topic'">评价主题</el-tag>
|
||||||
|
<el-tag v-else-if="row.type === 'topicItem'" type="warning">评分项</el-tag>
|
||||||
|
<span v-else>{{ row.type }}</span>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
|
||||||
|
<el-table-column align="left" label="审核对象" min-width="260" width="260">
|
||||||
|
<template #default="{ row }">
|
||||||
|
<!-- 评分项类型 -->
|
||||||
|
<div v-if="row.type === 'topicItem'" class="item-info-cell">
|
||||||
|
<el-image v-if="row.itemAvatarUrl" class="item-avatar" :src="getThumbUrl(row.itemAvatarUrl)" />
|
||||||
|
<div v-else class="item-avatar-placeholder"><i class="el-icon-picture-outline" /></div>
|
||||||
|
<div class="item-details">
|
||||||
|
<div class="item-name">{{ row.itemName || '-' }}</div>
|
||||||
|
<div class="item-sub" :title="row.topicTitle">
|
||||||
|
<span class="sub-label">所属话题:</span>
|
||||||
|
<span class="sub-value">{{ row.topicTitle || '-' }}</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!-- 评价主题类型 -->
|
||||||
|
<div v-else class="item-info-cell">
|
||||||
|
<div class="item-avatar-placeholder" style="border-radius: 4px"><i class="el-icon-document" /></div>
|
||||||
|
<div class="item-details">
|
||||||
|
<div class="item-name">{{ row.topicTitle || '-' }}</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
|
||||||
|
<el-table-column align="center" label="审核结果" width="100">
|
||||||
|
<template #default="{ row }">
|
||||||
|
<el-tag v-if="row.auditStatus === 2" type="success">已通过</el-tag>
|
||||||
|
<el-tag v-else-if="row.auditStatus === 3" type="danger">已拒绝</el-tag>
|
||||||
|
<el-tag v-else-if="row.auditStatus === 4" type="info">禁用</el-tag>
|
||||||
|
<span v-else>{{ row.auditStatus }}</span>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
|
||||||
|
<el-table-column align="left" label="审核备注 / 拒绝原因" min-width="200">
|
||||||
|
<template #default="{ row }">
|
||||||
|
<div v-if="row.rejectReason" class="remark-row">
|
||||||
|
<span class="remark-label" style="color: #f56c6c">拒绝原因:</span>
|
||||||
|
<span>{{ row.rejectReason }}</span>
|
||||||
|
</div>
|
||||||
|
<div v-if="row.auditRemark" class="remark-row">
|
||||||
|
<span class="remark-label">审核备注:</span>
|
||||||
|
<span>{{ row.auditRemark }}</span>
|
||||||
|
</div>
|
||||||
|
<span v-if="!row.rejectReason && !row.auditRemark">-</span>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
|
||||||
|
<el-table-column align="center" label="审核员 ID" prop="auditorId" width="220" />
|
||||||
|
|
||||||
|
<el-table-column align="center" label="审核时间" prop="createdAt" width="160">
|
||||||
|
<template #default="{ row }">
|
||||||
|
{{ formatTime(row.createdAt) }}
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
</el-table>
|
||||||
|
|
||||||
|
<el-pagination
|
||||||
|
background
|
||||||
|
:current-page="queryForm.pageNo"
|
||||||
|
:layout="layout"
|
||||||
|
:page-size="queryForm.pageSize"
|
||||||
|
:total="total"
|
||||||
|
@current-change="handleCurrentChange"
|
||||||
|
@size-change="handleSizeChange"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import { getReviewLogList } from '@/api/rating/topicOperate'
|
||||||
|
import { formatTime } from '@/utils'
|
||||||
|
import { getThumbUrl } from '@/utils/blessing'
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: 'RatingTopicItemReviewLogIndex',
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
list: [],
|
||||||
|
listLoading: true,
|
||||||
|
layout: 'total, sizes, prev, pager, next, jumper',
|
||||||
|
total: 0,
|
||||||
|
elementLoadingText: '正在加载...',
|
||||||
|
queryForm: {
|
||||||
|
pageNo: 1,
|
||||||
|
pageSize: 10,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
},
|
||||||
|
created() {
|
||||||
|
this.fetchData()
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
formatTime,
|
||||||
|
getThumbUrl,
|
||||||
|
handleSizeChange(val) {
|
||||||
|
this.queryForm.pageSize = val
|
||||||
|
this.fetchData()
|
||||||
|
},
|
||||||
|
handleCurrentChange(val) {
|
||||||
|
this.queryForm.pageNo = val
|
||||||
|
this.fetchData()
|
||||||
|
},
|
||||||
|
async fetchData() {
|
||||||
|
this.listLoading = true
|
||||||
|
try {
|
||||||
|
const { data } = await getReviewLogList(this.queryForm)
|
||||||
|
this.list = data.list || []
|
||||||
|
this.total = data.totalCount || 0
|
||||||
|
} catch (error) {
|
||||||
|
console.error(error)
|
||||||
|
} finally {
|
||||||
|
this.listLoading = false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
.rating-review-log-container {
|
||||||
|
padding: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.item-info-cell {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.item-avatar,
|
||||||
|
.item-avatar-placeholder {
|
||||||
|
width: 40px;
|
||||||
|
height: 40px;
|
||||||
|
border-radius: 50%;
|
||||||
|
margin-right: 12px;
|
||||||
|
flex-shrink: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.item-avatar-placeholder {
|
||||||
|
background-color: #f0f2f5;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
color: #909399;
|
||||||
|
font-size: 18px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.item-details {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.item-name {
|
||||||
|
font-weight: bold;
|
||||||
|
color: #303133;
|
||||||
|
margin-bottom: 4px;
|
||||||
|
white-space: nowrap;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
}
|
||||||
|
|
||||||
|
.item-sub {
|
||||||
|
font-size: 12px;
|
||||||
|
color: #909399;
|
||||||
|
white-space: nowrap;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sub-label {
|
||||||
|
margin-right: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sub-value {
|
||||||
|
color: #606266;
|
||||||
|
}
|
||||||
|
|
||||||
|
.remark-row {
|
||||||
|
font-size: 13px;
|
||||||
|
line-height: 1.5;
|
||||||
|
margin-bottom: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.remark-label {
|
||||||
|
color: #909399;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
143
src/views/rating/topicRecommend/components/TopicRecommendAdd.vue
Normal file
143
src/views/rating/topicRecommend/components/TopicRecommendAdd.vue
Normal file
@@ -0,0 +1,143 @@
|
|||||||
|
<template>
|
||||||
|
<el-dialog :title="title" :visible.sync="dialogFormVisible" width="560px" @close="close">
|
||||||
|
<el-form ref="form" label-width="100px" :model="form" :rules="rules">
|
||||||
|
<el-form-item label="选择话题" prop="topicId">
|
||||||
|
<el-select
|
||||||
|
v-model="form.topicId"
|
||||||
|
v-loadmore="loadMoreTopics"
|
||||||
|
filterable
|
||||||
|
placeholder="请选择推荐话题"
|
||||||
|
:popper-append-to-body="false"
|
||||||
|
style="width: 100%"
|
||||||
|
>
|
||||||
|
<el-option v-for="item in topicList" :key="item.id" :label="item.title" :value="item.id">
|
||||||
|
<div class="topic-option">
|
||||||
|
<span class="topic-option-title">{{ item.title }}</span>
|
||||||
|
<el-tag v-if="item.status === 2" size="mini" type="success">已通过</el-tag>
|
||||||
|
<el-tag v-else-if="item.status === 1" size="mini" type="warning">审核中</el-tag>
|
||||||
|
<el-tag v-else-if="item.status === 3" size="mini" type="danger">已拒绝</el-tag>
|
||||||
|
<el-tag v-else-if="item.status === 4" size="mini" type="info">禁用</el-tag>
|
||||||
|
</div>
|
||||||
|
</el-option>
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
</el-form>
|
||||||
|
|
||||||
|
<div slot="footer" class="dialog-footer">
|
||||||
|
<el-button @click="close">取 消</el-button>
|
||||||
|
<el-button :loading="saving" type="primary" @click="save">确 定</el-button>
|
||||||
|
</div>
|
||||||
|
</el-dialog>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import { getList as getTopicList } from '@/api/rating/topic'
|
||||||
|
import { doAdd } from '@/api/rating/topicRecommend'
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: 'TopicRecommendAdd',
|
||||||
|
directives: {
|
||||||
|
loadmore: {
|
||||||
|
bind(el, binding) {
|
||||||
|
setTimeout(() => {
|
||||||
|
const SELECTWRAP_DOM = el.querySelector('.el-select-dropdown .el-select-dropdown__wrap')
|
||||||
|
if (SELECTWRAP_DOM) {
|
||||||
|
SELECTWRAP_DOM.addEventListener('scroll', function () {
|
||||||
|
const condition = this.scrollHeight - this.scrollTop <= this.clientHeight + 2
|
||||||
|
if (condition) {
|
||||||
|
binding.value()
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}, 0)
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
title: '添加推荐话题',
|
||||||
|
dialogFormVisible: false,
|
||||||
|
saving: false,
|
||||||
|
form: {
|
||||||
|
topicId: '',
|
||||||
|
},
|
||||||
|
rules: {
|
||||||
|
topicId: [{ required: true, trigger: 'change', message: '请选择推荐话题' }],
|
||||||
|
},
|
||||||
|
topicList: [],
|
||||||
|
topicQuery: {
|
||||||
|
pageNo: 1,
|
||||||
|
pageSize: 20,
|
||||||
|
type: 'recommend',
|
||||||
|
},
|
||||||
|
topicTotal: 0,
|
||||||
|
fetchingTopics: false,
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
showEdit() {
|
||||||
|
this.form = this.$options.data().form
|
||||||
|
this.dialogFormVisible = true
|
||||||
|
this.topicQuery.pageNo = 1
|
||||||
|
this.topicList = []
|
||||||
|
this.topicTotal = 0
|
||||||
|
this.fetchTopicList()
|
||||||
|
},
|
||||||
|
close() {
|
||||||
|
this.$refs['form'].resetFields()
|
||||||
|
this.form = this.$options.data().form
|
||||||
|
this.dialogFormVisible = false
|
||||||
|
this.saving = false
|
||||||
|
},
|
||||||
|
async fetchTopicList() {
|
||||||
|
if (this.fetchingTopics) return
|
||||||
|
this.fetchingTopics = true
|
||||||
|
try {
|
||||||
|
const { data } = await getTopicList(this.topicQuery)
|
||||||
|
this.topicList = this.topicList.concat(data.list || [])
|
||||||
|
this.topicTotal = data.totalCount || 0
|
||||||
|
} catch (error) {
|
||||||
|
console.error(error)
|
||||||
|
} finally {
|
||||||
|
this.fetchingTopics = false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
loadMoreTopics() {
|
||||||
|
if (this.topicList.length >= this.topicTotal || this.fetchingTopics) return
|
||||||
|
this.topicQuery.pageNo += 1
|
||||||
|
this.fetchTopicList()
|
||||||
|
},
|
||||||
|
save() {
|
||||||
|
this.$refs['form'].validate(async (valid) => {
|
||||||
|
if (!valid) return false
|
||||||
|
this.saving = true
|
||||||
|
try {
|
||||||
|
const { msg } = await doAdd(this.form)
|
||||||
|
this.$baseMessage(msg || '添加推荐成功', 'success')
|
||||||
|
this.$emit('fetch-data')
|
||||||
|
this.close()
|
||||||
|
} catch (error) {
|
||||||
|
console.error(error)
|
||||||
|
} finally {
|
||||||
|
this.saving = false
|
||||||
|
}
|
||||||
|
})
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
.topic-option {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: space-between;
|
||||||
|
gap: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.topic-option-title {
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
171
src/views/rating/topicRecommend/index.vue
Normal file
171
src/views/rating/topicRecommend/index.vue
Normal file
@@ -0,0 +1,171 @@
|
|||||||
|
<template>
|
||||||
|
<div class="topic-recommend-container">
|
||||||
|
<vab-query-form>
|
||||||
|
<vab-query-form-left-panel :span="12">
|
||||||
|
<el-button icon="el-icon-plus" type="primary" @click="handleAdd">添加推荐</el-button>
|
||||||
|
</vab-query-form-left-panel>
|
||||||
|
</vab-query-form>
|
||||||
|
|
||||||
|
<el-table v-loading="listLoading" :data="list" :element-loading-text="elementLoadingText">
|
||||||
|
<el-table-column align="left" label="推荐话题" min-width="220" width="220">
|
||||||
|
<template #default="{ row }">
|
||||||
|
<div class="topic-cell" @click="handleClick(row.topic)">
|
||||||
|
<div class="topic-title">{{ row.topic ? row.topic.title : '-' }}</div>
|
||||||
|
<div class="topic-meta">
|
||||||
|
<span class="meta-label">Topic ID:</span>
|
||||||
|
<span>{{ row.topicId }}</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
|
||||||
|
<el-table-column align="center" label="话题状态" width="100">
|
||||||
|
<template #default="{ row }">
|
||||||
|
<el-tag v-if="row.topic && row.topic.status === 1" type="warning">审核中</el-tag>
|
||||||
|
<el-tag v-else-if="row.topic && row.topic.status === 2" type="success">已通过</el-tag>
|
||||||
|
<el-tag v-else-if="row.topic && row.topic.status === 3" type="danger">已拒绝</el-tag>
|
||||||
|
<el-tag v-else-if="row.topic && row.topic.status === 4" type="info">禁用</el-tag>
|
||||||
|
<span v-else>-</span>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
|
||||||
|
<el-table-column align="center" label="排序" prop="sort" width="120">
|
||||||
|
<template #default="{ row }">
|
||||||
|
<el-input v-model="row.sort" placeholder="排序" size="mini" @blur="handleMove(row)" @keyup.enter.native="handleMove(row)" />
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
|
||||||
|
<el-table-column align="center" label="启用" width="100">
|
||||||
|
<template #default="{ row }">
|
||||||
|
<el-switch v-model="row.enable" :active-value="true" :inactive-value="false" @change="handleToggleStatus(row)" />
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
</el-table>
|
||||||
|
|
||||||
|
<el-pagination
|
||||||
|
background
|
||||||
|
:current-page="queryForm.pageNo"
|
||||||
|
:layout="layout"
|
||||||
|
:page-size="queryForm.pageSize"
|
||||||
|
:total="total"
|
||||||
|
@current-change="handleCurrentChange"
|
||||||
|
@size-change="handleSizeChange"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<topic-recommend-add ref="add" @fetch-data="fetchData" />
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import { getList, toggleEnable, moveTo } from '@/api/rating/topicRecommend'
|
||||||
|
import TopicRecommendAdd from './components/TopicRecommendAdd'
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: 'RatingTopicRecommendIndex',
|
||||||
|
components: { TopicRecommendAdd },
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
list: [],
|
||||||
|
listLoading: true,
|
||||||
|
layout: 'total, sizes, prev, pager, next, jumper',
|
||||||
|
total: 0,
|
||||||
|
elementLoadingText: '正在加载...',
|
||||||
|
queryForm: {
|
||||||
|
pageNo: 1,
|
||||||
|
pageSize: 20,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
},
|
||||||
|
created() {
|
||||||
|
this.fetchData()
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
handleAdd() {
|
||||||
|
this.$refs['add'].showEdit()
|
||||||
|
},
|
||||||
|
handleSizeChange(val) {
|
||||||
|
this.queryForm.pageSize = val
|
||||||
|
this.fetchData()
|
||||||
|
},
|
||||||
|
handleCurrentChange(val) {
|
||||||
|
this.queryForm.pageNo = val
|
||||||
|
this.fetchData()
|
||||||
|
},
|
||||||
|
handleClick(topic) {
|
||||||
|
this.$router.push({
|
||||||
|
path: '/rating/topic',
|
||||||
|
query: {
|
||||||
|
topicId: topic.id,
|
||||||
|
},
|
||||||
|
})
|
||||||
|
},
|
||||||
|
async fetchData() {
|
||||||
|
this.listLoading = true
|
||||||
|
try {
|
||||||
|
const { data } = await getList(this.queryForm)
|
||||||
|
this.list = data.list || []
|
||||||
|
this.total = data.totalCount || 0
|
||||||
|
} catch (error) {
|
||||||
|
console.error(error)
|
||||||
|
} finally {
|
||||||
|
this.listLoading = false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
async handleToggleStatus(row) {
|
||||||
|
try {
|
||||||
|
const { msg } = await toggleEnable(row.id, row.enable)
|
||||||
|
this.$baseMessage(msg || '状态切换成功', 'success')
|
||||||
|
this.fetchData()
|
||||||
|
} catch (error) {
|
||||||
|
console.error(error)
|
||||||
|
row.enable = !row.enable
|
||||||
|
}
|
||||||
|
},
|
||||||
|
async handleMove(row) {
|
||||||
|
const sortVal = Number(row.sort)
|
||||||
|
if (isNaN(sortVal)) {
|
||||||
|
this.$message.error('排序必须是数字')
|
||||||
|
this.fetchData()
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
const { msg } = await moveTo(row.id, sortVal)
|
||||||
|
this.$baseMessage(msg || '移动成功', 'success')
|
||||||
|
this.fetchData()
|
||||||
|
} catch (error) {
|
||||||
|
console.error(error)
|
||||||
|
this.fetchData()
|
||||||
|
}
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
.topic-recommend-container {
|
||||||
|
padding: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.topic-cell {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.topic-title {
|
||||||
|
color: #303133;
|
||||||
|
font-weight: bold;
|
||||||
|
margin-bottom: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.topic-meta {
|
||||||
|
color: #909399;
|
||||||
|
font-size: 12px;
|
||||||
|
word-break: break-all;
|
||||||
|
}
|
||||||
|
|
||||||
|
.meta-label {
|
||||||
|
margin-right: 4px;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
@@ -62,7 +62,11 @@
|
|||||||
async save() {
|
async save() {
|
||||||
this.saving = true
|
this.saving = true
|
||||||
try {
|
try {
|
||||||
const { msg } = await reviewTopic(this.form)
|
const payload = { ...this.form }
|
||||||
|
if (payload.itemId && !payload.itemmId) {
|
||||||
|
payload.itemmId = payload.itemId
|
||||||
|
}
|
||||||
|
const { msg } = await reviewTopic(payload)
|
||||||
this.$baseMessage(msg || '操作成功', 'success')
|
this.$baseMessage(msg || '操作成功', 'success')
|
||||||
this.$emit('fetch-data')
|
this.$emit('fetch-data')
|
||||||
this.close()
|
this.close()
|
||||||
|
|||||||
@@ -92,8 +92,8 @@
|
|||||||
|
|
||||||
<el-table-column align="center" label="操作" width="180">
|
<el-table-column align="center" label="操作" width="180">
|
||||||
<template #default="{ row }">
|
<template #default="{ row }">
|
||||||
<el-button size="mini" type="success" @click="handleReview(row, 2, 'topic')">通过</el-button>
|
<el-button :disabled="!canReviewTopic(row)" size="mini" type="success" @click="handleReview(row, 2, 'topic')">通过</el-button>
|
||||||
<el-button size="mini" type="danger" @click="handleReview(row, 3, 'topic')">拒绝</el-button>
|
<el-button :disabled="!canReviewTopic(row)" size="mini" type="danger" @click="handleReview(row, 3, 'topic')">拒绝</el-button>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
</el-table>
|
</el-table>
|
||||||
@@ -141,6 +141,11 @@
|
|||||||
methods: {
|
methods: {
|
||||||
formatTime,
|
formatTime,
|
||||||
getThumbUrl,
|
getThumbUrl,
|
||||||
|
canReviewTopic(row) {
|
||||||
|
const items = row && row.topicItems ? row.topicItems : []
|
||||||
|
if (!items.length) return true
|
||||||
|
return items.every((item) => [2, 3, 4].includes(item && item.status))
|
||||||
|
},
|
||||||
handleSizeChange(val) {
|
handleSizeChange(val) {
|
||||||
this.queryForm.pageSize = val
|
this.queryForm.pageSize = val
|
||||||
this.fetchData()
|
this.fetchData()
|
||||||
@@ -166,6 +171,10 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
handleReview(row, status, type) {
|
handleReview(row, status, type) {
|
||||||
|
if (type === 'topic' && !this.canReviewTopic(row)) {
|
||||||
|
this.$message.warning('请先审核该话题下所有评分项,再审核话题')
|
||||||
|
return
|
||||||
|
}
|
||||||
this.$refs['edit'].showEdit(row, status, type)
|
this.$refs['edit'].showEdit(row, status, type)
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -108,26 +108,7 @@
|
|||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column align="left" label="用户信息" min-width="200">
|
<el-table-column align="left" label="用户信息" min-width="200">
|
||||||
<template #default="{ row }">
|
<template #default="{ row }">
|
||||||
<div v-if="row.user" class="user-info-cell">
|
<user-info :user="row.user" :user-id="row.userId" />
|
||||||
<el-image
|
|
||||||
v-if="row.user.avatar"
|
|
||||||
class="user-avatar"
|
|
||||||
:preview-src-list="[row.user.avatar]"
|
|
||||||
:src="getThumbUrl(row.user.avatar)"
|
|
||||||
/>
|
|
||||||
<div v-else class="user-avatar-placeholder"><i class="el-icon-user" /></div>
|
|
||||||
<div class="user-details">
|
|
||||||
<div class="user-nickname">
|
|
||||||
{{ row.user.nickname || '未知用户' }}
|
|
||||||
<el-tag v-if="row.user.isRobot" size="mini" style="margin-left: 4px" type="info">机器人</el-tag>
|
|
||||||
<el-tag v-else size="mini" style="margin-left: 4px" type="success">真人</el-tag>
|
|
||||||
</div>
|
|
||||||
<div class="user-id">{{ row.user.id }}</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div v-else class="user-details">
|
|
||||||
<div class="user-id">{{ row.userId }}</div>
|
|
||||||
</div>
|
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
|
|
||||||
@@ -161,11 +142,12 @@
|
|||||||
import { getList as getItemList } from '@/api/rating/topicItem'
|
import { getList as getItemList } from '@/api/rating/topicItem'
|
||||||
import { formatTime } from '@/utils'
|
import { formatTime } from '@/utils'
|
||||||
import { getThumbUrl } from '@/utils/blessing'
|
import { getThumbUrl } from '@/utils/blessing'
|
||||||
|
import UserInfo from '@/components/UserInfo'
|
||||||
import RecordRatingEdit from './components/RecordRatingEdit'
|
import RecordRatingEdit from './components/RecordRatingEdit'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'RatingTopicRecordIndex',
|
name: 'RatingTopicRecordIndex',
|
||||||
components: { RecordRatingEdit },
|
components: { RecordRatingEdit, UserInfo },
|
||||||
directives: {
|
directives: {
|
||||||
loadmore: {
|
loadmore: {
|
||||||
bind(el, binding) {
|
bind(el, binding) {
|
||||||
@@ -392,45 +374,6 @@
|
|||||||
padding: 20px;
|
padding: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* 用户信息列样式 */
|
|
||||||
.user-info-cell {
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
}
|
|
||||||
.user-avatar,
|
|
||||||
.user-avatar-placeholder {
|
|
||||||
width: 40px;
|
|
||||||
height: 40px;
|
|
||||||
border-radius: 50%;
|
|
||||||
margin-right: 12px;
|
|
||||||
flex-shrink: 0;
|
|
||||||
}
|
|
||||||
.user-avatar-placeholder {
|
|
||||||
background-color: #f0f2f5;
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
color: #909399;
|
|
||||||
font-size: 20px;
|
|
||||||
}
|
|
||||||
.user-details {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
.user-nickname {
|
|
||||||
font-weight: bold;
|
|
||||||
color: #303133;
|
|
||||||
margin-bottom: 4px;
|
|
||||||
white-space: nowrap;
|
|
||||||
overflow: hidden;
|
|
||||||
text-overflow: ellipsis;
|
|
||||||
}
|
|
||||||
.user-id {
|
|
||||||
font-size: 12px;
|
|
||||||
color: #909399;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* 评价目标列样式 */
|
/* 评价目标列样式 */
|
||||||
.target-info-cell {
|
.target-info-cell {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|||||||
Reference in New Issue
Block a user