diff --git a/src/components/page/articleList.vue b/src/components/page/articleList.vue index c864b91..5ba348f 100644 --- a/src/components/page/articleList.vue +++ b/src/components/page/articleList.vue @@ -310,32 +310,61 @@ {{formatDate1(item.ctime)}} -
+ ++ {{item1.recommend | getOpinion}} + {{item1.recommend | getOpinion}} + {{item1.recommend | getOpinion}} +
++ Comments for the Authors +
{{item1.content}}
+
+ + Response time: {{item1.stime|formatDatehms}} * {{item1.stime}} +
+No Comment
@@ -473,6 +502,10 @@ .then(res => { // 弹出框 this.comentDeploy = res.suggest + this.comentDeploy.map(item => { + if(item.question && item.question.length > 0) + item.question = item.question.reverse() + }) // this.activeComment = [] // for (var i = 0; i < res.suggest.length; i++) { // this.activeComment.push(i) @@ -561,6 +594,22 @@ }, }, filters: { + + // 复审意见结果 + getOpinion(value){ + switch (value) { + case 1: + return 'Accept' + break; + case 2: + return 'Reject' + break; + case 3: + return 'Revison' + break; + } + }, + // 文章类型 ellipsis(value) { let frag = ''; @@ -737,6 +786,11 @@