diff --git a/src/oj/problem/components/ProblemComment.vue b/src/oj/problem/components/ProblemComment.vue
index eaddf9c..f5036c0 100644
--- a/src/oj/problem/components/ProblemComment.vue
+++ b/src/oj/problem/components/ProblemComment.vue
@@ -98,12 +98,6 @@
{{ rating.comprehensive }}
-
- 以下是一些评论留言:
-
- {{ item }}
-
-
暂无记录,快去评论吧
@@ -137,7 +131,6 @@ const comprehensive_rating = ref(0)
const [show, toggleShow] = useToggle()
const [hasCommented, toggleHasCommented] = useToggle()
-const contentList = ref([])
const count = ref(0)
const rating = reactive({
description: 0,
@@ -179,7 +172,6 @@ async function getComments() {
rating.description = res.data.rating.description
rating.difficulty = res.data.rating.difficulty
rating.comprehensive = res.data.rating.comprehensive
- contentList.value = res.data.contents
}
async function getMyComment() {