diff --git a/src/components/page/JournalCitationAnalysis.vue b/src/components/page/JournalCitationAnalysis.vue
index ebd21df..00909c0 100644
--- a/src/components/page/JournalCitationAnalysis.vue
+++ b/src/components/page/JournalCitationAnalysis.vue
@@ -15,7 +15,7 @@
{{ $t('JournalCitationAnalysis.info') }} : {{ $t('JournalCitationAnalysis.wos') }} /
{{ $t('JournalCitationAnalysis.all') }}
-
+
Tiltle :
{{ scope.row.title }}
@@ -187,6 +202,11 @@
{{ scope.row.article_name }}
+ Author :
+
+ {{ scope.row.author }}
+
Doi :
{{
@@ -202,13 +222,21 @@
- Email sending statistics :
- Success:
- {{ !scope.row.email_success?0:scope.row.email_success }}
+
+ Email sending statistics :
- Fail: {{ !scope.row.email_fail?0:scope.row.email_fail }}
+ Success:
+
+ {{ !scope.row.email_success ? 0 : scope.row.email_success }}
+
+
+ Fail:
+ {{ !scope.row.email_fail ? 0 : scope.row.email_fail }}
+
{{ $t('citeList.no') }} {{ doiInfo.author }} {{ refenceForm.vol }}
+
+ Automated Scoring for Reviewer's Opinions :
+ {{
+ Number(questionform.score)
+ }}
+
+
+
Download failed?
-
+
+ It seems like you're encountering a download issue with Google Chrome version 86. Here are the steps you can follow to resolve or bypass the issue:
+
-
-
-
-
+
+
@@ -152,14 +194,19 @@ export default {
// type: Boolean,
// default: true
// },
- isNewForm: {
- type: Boolean,
- default: false
- },
+ // isNewForm: {
+ // type: Boolean,
+ // default: false
+ // },
+
type: {
type: String,
default: 'questionform'
},
+ pagetype: {
+ type: String,
+ default: ''
+ },
confident: {
type: Boolean,
default: true
@@ -203,12 +250,11 @@ export default {
},
data() {
return {
+ isNewForm: false,
loading: false,
-
isEdit: true,
baseQuestionform: {},
questionform: {},
-
rules: {}
};
},
@@ -219,14 +265,25 @@ export default {
getData() {
// Fetch article data
this.questionform = { ...this.baseQuestionform };
- if (this.isNewForm) {
+ if (this.baseQuestionform.type != 1) {
+ this.isNewForm = true;
this.rules = {
- qu6: [{ required: true, message: 'please select', trigger: 'blur' }],
rated: [{ required: true, message: 'please select', trigger: 'blur' }],
comment: [{ required: true, message: 'please input content', trigger: 'blur' }],
+ other: [{ required: true, message: 'please input content', trigger: 'blur' }],
recommend: [{ required: true, message: 'please select', trigger: 'blur' }]
};
+ if (this.txt_mess.atype == 'REVIEW' || this.txt_mess.atype == 'MINI REVIEW') {
+ for (let i = 1; i <= 12; i++) {
+ this.rules[`qu${i}`] = [{ required: true, message: 'please select', trigger: 'blur' }];
+ }
+ } else {
+ for (let i = 1; i <= 14; i++) {
+ this.rules[`qu${i}`] = [{ required: true, message: 'please select', trigger: 'blur' }];
+ }
+ }
} else {
+ this.isNewForm = false;
this.rules = {
qu6: [{ required: true, message: 'please select', trigger: 'blur' }],
rated: [{ required: true, message: 'please select', trigger: 'blur' }],
@@ -258,19 +315,33 @@ export default {
return false;
}
}
+ let Char_Cter = null;
// 验证相加的字数
- let Char_Cter =
- this.questionform.qu9contents +
- ' ' +
- this.questionform.qu10contents +
- ' ' +
- this.questionform.qu11contents +
- ' ' +
- this.questionform.qu12contents +
- ' ' +
- this.questionform.qu13contents +
- ' ' +
- this.questionform.comment;
+ if (this.isNewForm) {
+ Char_Cter = [
+ this.questionform.qu5contents,
+ this.questionform.qu6contents,
+ this.questionform.qu7contents,
+ this.questionform.qu8contents,
+ this.questionform.qu9contents,
+ this.questionform.qu10contents,
+ this.questionform.qu11contents,
+ this.questionform.qu12contents,
+ this.questionform.qu13contents,
+ this.questionform.qu14contents,
+ this.questionform.comment
+ ].join(' ');
+ } else {
+ Char_Cter = [
+ this.questionform.qu9contents,
+ this.questionform.qu10contents,
+ this.questionform.qu11contents,
+ this.questionform.qu12contents,
+ this.questionform.qu13contents,
+ this.questionform.comment
+ ].join(' ');
+ }
+
if (new RegExp('[\\u4E00-\\u9FFF]+', 'g').test(Char_Cter)) {
//中文
let blankCount = 0;
@@ -311,28 +382,36 @@ export default {
}
// 提交接口
// this.loading = true;
- const loading = this.$loading({
- lock: true,
- text: 'Loading...',
- spinner: 'el-icon-loading',
- background: 'rgba(0, 0, 0, 0.7)'
- });
+
this.$refs.question.validate((valid) => {
if (valid) {
- this.$api.post('api/Reviewer/questionSubmit', this.questionform).then((res) => {
- if (res.code == 0) {
- loading.close();
- this.$message.success('Success!!');
- this.$emit('refresh');
- this.$router.push('/per_text_success');
- } else {
- loading.close();
- // this.$message.error('Question submit error!');
- this.$message.error(res.msg);
- }
+ const loading = this.$loading({
+ lock: true,
+ text: 'Loading...',
+ spinner: 'el-icon-loading',
+ background: 'rgba(0, 0, 0, 0.7)'
});
+ this.$api
+ .post(this.isNewForm ? 'api/Reviewer/questionSubmitNew' : 'api/Reviewer/questionSubmit', {
+ ...this.questionform,
+ type: this.isNewForm ? (this.txt_mess.atype == 'REVIEW' || this.txt_mess.atype == 'MINI REVIEW' ? 3 : 2) : 1
+ })
+ .then((res) => {
+ if (res.code == 0) {
+ loading.close();
+ this.$message.success('Success!!');
+ this.$emit('refresh');
+ this.$router.push('/per_text_success');
+ } else {
+ loading.close();
+ // this.$message.error('Question submit error!');
+ this.$message.error(res.msg);
+ }
+ })
+ .catch((err) => {
+ loading.close();
+ });
} else {
- loading.close();
}
});
}
@@ -352,4 +431,8 @@ export default {
::v-deep .el-divider {
background-color: #006699;
}
+::v-deep .el-form-item--mini.el-form-item,
+.el-form-item--small.el-form-item {
+ margin-bottom: 10px;
+}
diff --git a/src/components/page/components/reviewArticle/new.vue b/src/components/page/components/reviewArticle/new.vue
index 2945e7b..d1f90cf 100644
--- a/src/components/page/components/reviewArticle/new.vue
+++ b/src/components/page/components/reviewArticle/new.vue
@@ -1,81 +1,63 @@
-
If you have upgraded the Google Chrome browser to version 86, released on October 6, 2020, you may
+
1. Right-click on the download link: Instead of clicking the link normally, right-click on it and select "save link as". This should allow the download to start.
+
2. Try a different browser:
+If you're still having trouble with Chrome, you could use other browsers to complete your downloads. Browsers like Firefox, Internet Explorer, Brave, Vivaldi, the new Edge, or Opera are known to work well for downloads without this issue.
+
+
+