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)}} -
-

- Does the title represent manuscript's contents? -

{{item.qu9_contents}}
-

-

- Is the Abstract accurate and concise? -

{{item.qu10_contents}}
-

-

- Are the approach/ methods properly described? -

{{item.qu11_contents}}
-

-

- Are the conclusions and interpretations sound? -

{{item.qu12_contents}}
-

-

- Are the references properly cited? -

{{item.qu13_contents}}
-

-

- Comments for the Authors -

{{item.comments}}
-

-
+ + + + + +
+

Under review

+ +
+

+ Does the title represent manuscript's contents? +

{{item1.qu9_contents}}
+

+

+ Is the Abstract accurate and concise? +

{{item1.qu10_contents}}
+

+

+ Are the approach/ methods properly described? +

{{item1.qu11_contents}}
+

+

+ Are the conclusions and interpretations sound? +

{{item1.qu12_contents}}
+

+

+ Are the references properly cited? +

{{item1.qu13_contents}}
+

+

+ Comments for the Authors +

{{item1.comments}}
+

+
+
+
+ + Second review +

+ {{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 @@