From 81d3dd93207390cd3efb85c701be530cf197fc1f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=A7=8B=E4=BA=8E=E5=88=9D=E8=A7=81?= <752204717@qq.com> Date: Wed, 11 Feb 2026 13:17:38 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BD=9C=E8=80=85=E7=AB=AF=E7=9C=8B=E5=88=B0?= =?UTF-8?q?=20=E5=88=9D=E5=AE=A1=E7=9A=84=E5=AE=A1=E7=A8=BF=E9=97=AE?= =?UTF-8?q?=E5=8D=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../page/articleProcessRevision.vue | 58 +++- .../page/components/reviewArticle/author.vue | 282 ++++++++++++++++++ 2 files changed, 338 insertions(+), 2 deletions(-) create mode 100644 src/components/page/components/reviewArticle/author.vue diff --git a/src/components/page/articleProcessRevision.vue b/src/components/page/articleProcessRevision.vue index 6fd74b4..266bd2d 100644 --- a/src/components/page/articleProcessRevision.vue +++ b/src/components/page/articleProcessRevision.vue @@ -41,11 +41,13 @@ + +
-

Under review

+

Under reviewDetail

@@ -502,6 +504,20 @@ OK + + + + + +

@@ -509,6 +525,8 @@ export default { data() { return { + questionform:{}, + dialogFormVisible:false, baseUrl: this.Common.baseUrl, mediaUrl: this.Common.mediaUrl, articleId: this.$route.query.id, @@ -581,7 +599,43 @@ return this.baseUrl + 'api/Article/up_response_file'; }, }, - methods: { + methods: { + showDetail(data){ + + this.questionform = data; + this.questionform.rev_qu_id = data.rev_qu_id; + this.questionform.qu1 = data.qu1; + this.questionform.qu2 = data.qu2; + this.questionform.qu3 = data.qu3; + this.questionform.qu4 = data.qu4; + this.questionform.qu5 = data.qu5; + this.questionform.qu6 = data.qu6; + this.questionform.qu7 = data.qu7; + this.questionform.qu8 = data.qu8; + this.questionform.qu9 = data.qu9 == 0 ? false : true; + this.questionform.qu9contents = data.qu9_contents; + this.questionform.qu10 = data.qu10 == 0 ? false : true; + this.questionform.qu10contents = data.qu10_contents; + this.questionform.qu11 = data.qu11 == 0 ? false : true; + this.questionform.qu11contents = data.qu11_contents; + this.questionform.qu12 = data.qu12 == 0 ? false : true; + this.questionform.qu12contents = data.qu12_contents; + this.questionform.qu13 = data.qu13 == 0 ? false : true; + this.questionform.qu13contents = data.qu13_contents; + this.questionform.qu14 = data.qu14 == 0 ? false : true; + this.questionform.qu14contents = data.qu14_contents; + this.questionform.qu15 = data.qu15 == 0 ? false : true; + this.questionform.qu15contents = data.qu15_contents; + this.questionform.rated = data.rated; + this.questionform.recommend = data.recommend; + this.questionform.other = data.other; + this.questionform.confident = data.confidential; + this.questionform.comment = data.comments; + this.questionform.is_anonymous = data.is_anonymous; + this.questionform.type= data.type; + this.questionform.score = data.score; + this.dialogFormVisible = true; + }, //初始化文章信息 initarticle() { this.$api diff --git a/src/components/page/components/reviewArticle/author.vue b/src/components/page/components/reviewArticle/author.vue new file mode 100644 index 0000000..c990abd --- /dev/null +++ b/src/components/page/components/reviewArticle/author.vue @@ -0,0 +1,282 @@ + + + + +