新增cite

This commit is contained in:
2024-08-16 17:47:22 +08:00
parent 279761232b
commit f5d5d5b25a
9 changed files with 1456 additions and 19 deletions

View File

@@ -178,16 +178,46 @@ const en = {
}, protocol: {
PublishingAgreementInfo: 'Please enter the publishing agreement'
},journalStatus:{
changeStatusInfo:'此稿件的评分没有达到初始评分标准,是否继续?',
changeStatusInfo:'The rating of this manuscript did not meet the initial rating criteria. Do you want to continue?',
Continue:'继续',
Continue:'Continue',
Cancel:'取消',
Cancel:'Cancel',
Prompt:'提示',
Prompt:'Prompt',
},
}, journalStatus: {
changeStatusInfo: '此稿件的评分没有达到初始评分标准,是否继续?',
changeStatusInfo: 'The rating of this manuscript did not meet the initial rating criteria. Do you want to continue?',
Continue: '继续',
Continue: 'Continue',
Cancel: '取消',
Cancel: 'Cancel',
Prompt: '提示',
Prompt: 'Prompt',
},citeList: {
refresh: 'Check',
search: 'Search',
yes: 'Yes',
save: 'Save',
cancel: 'Cancel',
no: 'No',
add: 'Add',
edit: 'Edit',
delete: 'Delete',
deleteInfo: 'Are you sure you want to delete?',
tip: 'Tip',
factor: 'Factor',
date: 'Date',
is_wos: 'Is Wos',
is_china: 'Is China',
is_china0: '-',
is_china0Info: '-',
is_china1: 'Yes',
is_china2: 'No',
articleInfo: 'Article Information',
articleTitle: 'Article Tiltle',
journalTitle: 'Journal Tiltle',
addInfo: 'Paste the DOI into the input box, confirm that the information is correct, and then click the "Save" button.',
dialogQueryButton: 'Search',
dialogQueryButtonInfo: 'You can click the "Search" on the right to automatically identify and quickly fill in all the current fields',
dialogQueryButtonErrInfo: 'You can click the "Search" on the right to automatically identify and quickly fill in all the current fields',
rulesDoiInfo:'Please enter Doi',
rulesJournalInfo:'Please enter the journal title',
rulesArticleInfo:'Please enter the article title',
},
}

View File

@@ -177,11 +177,43 @@ const zh = {
}, protocol: {
PublishingAgreementInfo: '请输入出版协议'
},
journalStatus:{
changeStatusInfo:'此稿件的评分没有达到初始评分标准,是否继续?',
Continue:'继续',
Cancel:'取消',
Prompt:'提示',
journalStatus: {
changeStatusInfo: '此稿件的评分没有达到初始评分标准,是否继续?',
Continue: '继续',
Cancel: '取消',
Prompt: '提示',
},
citeList: {
refresh: '检查更新',
search: '查询',
yes: '是',
save: '保存',
cancel: '取消',
no: '否',
add: '新增',
edit: '编辑',
delete: '删除',
deleteInfo: '您确定要删除吗?',
tip: '提示',
factor: '影响因子',
date: '日期',
is_wos: 'Is Wos',
is_china: 'Is China',
is_china0: '-',
is_china0Info: '不详',
is_china1: '是',
is_china2: '否',
articleInfo: '文章信息',
articleTitle: '文章标题',
journalTitle: '期刊标题',
addInfo: '将 doi 粘贴到输入框,确认信息无误后请点击"保存"按钮',
dialogAddInfo: '新增',
dialogQueryButton: '查询',
dialogQueryButtonInfo: '您可以单击右侧的“查询”以自动识别并快速填写所有当前字段',
dialogQueryButtonErrInfo: '暂无相关信息',
rulesDoiInfo:'请输入Doi',
rulesJournalInfo:'请输入期刊标题',
rulesArticleInfo:'请输入文章标题',
},
}

View File

@@ -28,6 +28,7 @@
<font>Title :</font>
<b> {{ form.title }}</b>
</p>
<!-- <p v-show="form.type=='A'">
<font>Ethical Approval :</font><b>{{form.approval?'Yes':'No'}}</b>
</p> -->

View File

@@ -50,6 +50,11 @@
<p v-html="scope.row.title"></p>
</template>
</el-table-column>
<el-table-column label="Cite" width="80px" align="center">
<template slot-scope="scope">
<p @click="goCite(scope.row)">20</p>
</template>
</el-table-column>
<el-table-column label="Html" width="100px" align="center">
<template slot-scope="scope">
<p>
@@ -474,6 +479,17 @@ export default {
}
},
methods: {
//跳转婴用列表
goCite(row) {
console.log('row at line 483:', row.article_id)
this.$router.push({
name: 'citeList',
query: {
article_id: row.article_id,
journal_id: row.journal_id
}
});
},
// 获取列表
getDate() {
const loading = this.$loading({

File diff suppressed because it is too large Load Diff

View File

@@ -925,6 +925,15 @@ export default new Router({
title: 'Refernce Editor'
}
},
{
name:'citeList',
path: '/citeList', //cite 引用 页面
component: () => import('../components/page/citeList'),
meta: {
title: 'Cite'
}
},
{
name:'Re-review',
path: '/Re_review', // 审稿人 复审详情页面