diff --git a/src/api/rating/topicOperate.js b/src/api/rating/topicOperate.js index 8320987..2025815 100644 --- a/src/api/rating/topicOperate.js +++ b/src/api/rating/topicOperate.js @@ -82,3 +82,15 @@ export function reviewTopic(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, + }) +} diff --git a/src/router/index.js b/src/router/index.js index 4e9c21b..0d4f305 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -141,6 +141,12 @@ export const asyncRoutes = [ component: () => import('@/views/rating/topicItemReview/index'), meta: { title: '评分项审核' }, }, + { + path: 'item-review-log', + name: 'RatingTopicItemReviewLogIndex', + component: () => import('@/views/rating/topicItemReviewLog/index'), + meta: { title: '审核日志' }, + }, ], }, ], diff --git a/src/views/rating/topicItemReviewLog/index.vue b/src/views/rating/topicItemReviewLog/index.vue new file mode 100644 index 0000000..07130f6 --- /dev/null +++ b/src/views/rating/topicItemReviewLog/index.vue @@ -0,0 +1,198 @@ + + + + + + 评价主题 + 评分项 + {{ row.type }} + + + + + + + + + + + {{ row.itemName || '-' }} + + 所属话题: + {{ row.topicTitle || '-' }} + + + + + + + + {{ row.topicTitle || '-' }} + + + + + + + + 已通过 + 已拒绝 + 禁用 + {{ row.auditStatus }} + + + + + + + 拒绝原因: + {{ row.rejectReason }} + + + 审核备注: + {{ row.auditRemark }} + + - + + + + + + + + {{ formatTime(row.createdAt) }} + + + + + + + + + + +