diff --git a/.gitignore b/.gitignore index d978c71..168db20 100644 --- a/.gitignore +++ b/.gitignore @@ -24,3 +24,4 @@ node_modules /package-lock.json /src/api/index.js /src/components/common/common.vue +/vue.config.js diff --git a/src/assets/img/star-grey.png b/src/assets/img/star-grey.png new file mode 100644 index 0000000..035fd41 Binary files /dev/null and b/src/assets/img/star-grey.png differ diff --git a/src/components/page/Dashboard_.vue b/src/components/page/Dashboard_.vue index 1812418..25c3ebf 100644 --- a/src/components/page/Dashboard_.vue +++ b/src/components/page/Dashboard_.vue @@ -151,7 +151,8 @@ Website :
Published articles
Recommended manuscripts
Reviewed manuscripts
+
Telephone number : +64
02108293806
@@ -1018,54 +1020,54 @@
youth_journal: [],
df_country: [],
df_technical: [{
- label: 'Professor',
- }, {
- label: 'Associate Professor',
- }, {
- label: 'Assistant Professor',
- },
- // {
- // label: 'Ph.D.',
- // },
- {
- label: 'Researcher',
- }, {
- label: 'Associate research fellow',
- }, {
- label: 'Assistant research fellow',
- }, {
- label: 'Engineer',
- }, {
- label: 'Senior engineer',
- },
- {
- label: 'Associate Researcher',
- },
- {
- label: 'Lecturer',
- },
- {
- label: 'Associate Chief Physician',
- },
- {
- label: 'Assistant Researcher',
- },
- {
- label: 'Physician',
- },
- {
- label: 'Chief Physician',
- },
- {
- label: 'Senior Lecturer',
- },
- {
- label: 'Research Fellow',
- },
- {
- label: 'Senior Investigator',
- },
- ],
+ label: 'Professor',
+ }, {
+ label: 'Associate Professor',
+ }, {
+ label: 'Assistant Professor',
+ },
+ // {
+ // label: 'Ph.D.',
+ // },
+ {
+ label: 'Researcher',
+ }, {
+ label: 'Associate research fellow',
+ }, {
+ label: 'Assistant research fellow',
+ }, {
+ label: 'Engineer',
+ }, {
+ label: 'Senior engineer',
+ },
+ {
+ label: 'Associate Researcher',
+ },
+ {
+ label: 'Lecturer',
+ },
+ {
+ label: 'Associate Chief Physician',
+ },
+ {
+ label: 'Assistant Researcher',
+ },
+ {
+ label: 'Physician',
+ },
+ {
+ label: 'Chief Physician',
+ },
+ {
+ label: 'Senior Lecturer',
+ },
+ {
+ label: 'Research Fellow',
+ },
+ {
+ label: 'Senior Investigator',
+ },
+ ],
fileL_pdf1: [],
pwdVisible: false,
usermsgList: [],
@@ -1477,7 +1479,7 @@
}
if (res.data.asReviewer) {
this.review_journal = res.data.asReviewer.journal
- this.reviewTable = res.data.asReviewer
+ this.reviewTable = res.data.asReviewer
if (!this.usercap.includes('reviewer')) {
localStorage.setItem('U_role', this.usercap + ',reviewer')
}
@@ -1491,7 +1493,11 @@
if (res.data.Yboard) {
this.youth_journal = res.data.Yboard
for (let i = 0; i < this.youth_journal.length; i++) {
- this.youth_journal[i].arrowMark = 0
+ if (i == 0) {
+ this.youth_journal[i].arrowMark = 1
+ } else {
+ this.youth_journal[i].arrowMark = 0
+ }
}
if (!this.usercap.includes('yboard')) {
localStorage.setItem('U_role', this.usercap + ',yboard')
@@ -2685,4 +2691,4 @@
line-height: 140px;
text-align: center;
} */
-
+
\ No newline at end of file
diff --git a/src/components/page/articleAdd.vue b/src/components/page/articleAdd.vue
index 197f378..13a0543 100644
--- a/src/components/page/articleAdd.vue
+++ b/src/components/page/articleAdd.vue
@@ -76,7 +76,7 @@
- For authors who selected 'Yes', please provide the approval number and name of the
- ethics committee or institutional review board that approved the study.
-
+ +
+ Ethical Approval :{{form.approval?'Yes':'No'}}
+
+
+ Ethical approval file
+
+
+
+ Explain the reason clearly :{{form.approval_content}}
Special Issues :{{ form.special_title }}
@@ -499,6 +510,8 @@
type: '',
major: '',
approval: false,
+ approval_file:'',
+ approval_content:'',
repetition: '',
manuscirpt: '',
remarks: '',
@@ -767,6 +780,8 @@
this.form.special_title = res.article.special_title;
this.form.major = res.major;
this.form.approval = res.article.approval == 1 ? true : false;
+ this.form.approval_file = res.article.approval_file
+ this.form.approval_content = res.article.approval_content
this.form.repetition = res.article.repetition;
this.form.remarks = res.article.remarks;
this.form.repeurl = res.article.repeurl;
diff --git a/src/components/page/articleList.vue b/src/components/page/articleList.vue
index 5ba348f..9e867db 100644
--- a/src/components/page/articleList.vue
+++ b/src/components/page/articleList.vue
@@ -1,5 +1,5 @@
-
Type :{{artextForm.type | ellipsis}}
+
Ethical Approval :{{artextForm.approval?'Yes':'No'}}
+
+
+ Explain the reason clearly :{{artextForm.approval_content}}
Special Issues :{{ artextForm.special_title }}
@@ -312,59 +320,64 @@
- {{item1.recommend | getOpinion}}
- {{item1.recommend | getOpinion}}
- {{item1.recommend | getOpinion}}
-
- Comments for the Authors
-
- Response time: {{item1.stime|formatDatehms}} * {{item1.stime}}
-
+ {{item1.recommend | getOpinion}}
+ {{item1.recommend | getOpinion}}
+ {{item1.recommend | getOpinion}}
+
+ Comments for the
+ Authors
+
+ Response time: {{item1.stime|formatDatehms}} * {{item1.stime}}
+
+ Ethical approval file
+
+
+
-
-
- {{item1.content}}
-
-
+
+
+ {{item1.content}}
+
+
No Comment
@@ -473,11 +486,11 @@ }, // 显示预收录页面 - goPre_ingested(id){ + goPre_ingested(id) { this.$router.push({ path: 'PreIngested', query: { - id: id + id: id // id: 3070 } }); @@ -503,8 +516,8 @@ // 弹出框 this.comentDeploy = res.suggest this.comentDeploy.map(item => { - if(item.question && item.question.length > 0) - item.question = item.question.reverse() + if (item.question && item.question.length > 0) + item.question = item.question.reverse() }) // this.activeComment = [] // for (var i = 0; i < res.suggest.length; i++) { @@ -572,6 +585,7 @@ .catch(err => { console.log(err); }); + }, @@ -594,9 +608,9 @@ }, }, filters: { - + // 复审意见结果 - getOpinion(value){ + getOpinion(value) { switch (value) { case 1: return 'Accept' @@ -609,7 +623,7 @@ break; } }, - + // 文章类型 ellipsis(value) { let frag = ''; @@ -786,14 +800,36 @@ + \ No newline at end of file diff --git a/src/components/page/articleListEditor_A.vue b/src/components/page/articleListEditor_A.vue index c4f2f7d..743acde 100644 --- a/src/components/page/articleListEditor_A.vue +++ b/src/components/page/articleListEditor_A.vue @@ -39,274 +39,283 @@- Cover letter - ({{item.file.coverLetter.length}}) : - - -
- -- Figures - ({{item.file.picturesAndTables.length}}) : - - -
- -- Title page - ({{item.file.totalpage.length}}) : - - -
- -- Manuscirpt - ({{item.file.manuscirpt.length}}) : - - -
- -- Supplementary Material - ({{item.file.supplementary.length}}) : - - -
- -- Initial review score : - {{item.scoring}} - -
-- Initial review score : - {{item.scoring}} -
-{{item.H.google_editor}} -
-- {{formatDate(item.H.google_time)}} -
- - Edit Hindex +- Comprehensive Score : - {{finalCount(item)}} -
-
- Reviewer{{index+1}} score : {{iken.rated}}
- Average : {{avegeCount(item.reviewScore)}} -
-- - - - - - - - -
-- - Inviting Reviewer - - -
-- Name : - {{item.realname}} - ({{item.phone}}) +
+ Comprehensive Score : + {{finalCount(item)}}
-- Email : - {{item.email}} - - Email +
+ Reviewer{{index+1}} score : {{iken.rated}}
+ Average : {{avegeCount(item.reviewScore)}} +
++ + + + + + + + +
++ + Inviting Reviewer - - History + +
++ Name : + {{item.realname}} + ({{item.phone}}) +
++ Email : + {{item.email}} + + Email + + + History + +
++ + Communication
- - Communication - -
+@@ -804,6 +815,39 @@