总监系统添加期刊列表
This commit is contained in:
@@ -130,6 +130,9 @@
|
|||||||
<el-menu-item index="superYoungScientistManagement">
|
<el-menu-item index="superYoungScientistManagement">
|
||||||
{{$t('sidebar.editorialBoard2')}}
|
{{$t('sidebar.editorialBoard2')}}
|
||||||
</el-menu-item>
|
</el-menu-item>
|
||||||
|
<el-menu-item index="superJournalsManagement">
|
||||||
|
{{$t('sidebar.editorialBoard3')}}
|
||||||
|
</el-menu-item>
|
||||||
</el-submenu>
|
</el-submenu>
|
||||||
</template>
|
</template>
|
||||||
<!-- 主编/总监统计图 -->
|
<!-- 主编/总监统计图 -->
|
||||||
|
|||||||
@@ -125,6 +125,7 @@ const en = {
|
|||||||
editorialBoard:'Boss System',
|
editorialBoard:'Boss System',
|
||||||
editorialBoard1:'Board Management',
|
editorialBoard1:'Board Management',
|
||||||
editorialBoard2:'Young Scientist Management',
|
editorialBoard2:'Young Scientist Management',
|
||||||
|
editorialBoard3:'Journal Management',
|
||||||
chiefInspector:'Chief Inspector',
|
chiefInspector:'Chief Inspector',
|
||||||
managingDirector:'Managing Director'
|
managingDirector:'Managing Director'
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -124,6 +124,7 @@ const zh = {
|
|||||||
editorialBoard:'编委管理',
|
editorialBoard:'编委管理',
|
||||||
editorialBoard1:'编委列表',
|
editorialBoard1:'编委列表',
|
||||||
editorialBoard2:'青年科学家列表',
|
editorialBoard2:'青年科学家列表',
|
||||||
|
editorialBoard3:'期刊列表',
|
||||||
chiefInspector:'总监',
|
chiefInspector:'总监',
|
||||||
managingDirector:'总经理'
|
managingDirector:'总经理'
|
||||||
},
|
},
|
||||||
|
|||||||
81
src/components/page/superJournalsManagement.vue
Normal file
81
src/components/page/superJournalsManagement.vue
Normal file
@@ -0,0 +1,81 @@
|
|||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
<el-table :data="tableData" border stripe class="table" ref="multipleTable" header-cell-class-name="table-header" style="font-size: 14px;"
|
||||||
|
empty-text="New messages (0)" v-loading="loading">
|
||||||
|
<el-table-column type="index" label="No." width="55" align="center"></el-table-column>
|
||||||
|
<el-table-column label="Journals" prop="jabbr" align="center"></el-table-column>
|
||||||
|
<el-table-column label="Editor" prop="editor" align="center">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<div class="">
|
||||||
|
<span>name: <span>{{scope.row.editor.realname}}</span></span><br/>
|
||||||
|
<span>email: {{scope.row.editor.email}}</span><br/>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column label="Number" prop="DY" align="center"></el-table-column>
|
||||||
|
<el-table-column label="直投" prop="Z" align="center" width="120" ></el-table-column>
|
||||||
|
<el-table-column label="转投" prop="ZT" align="center" width="120" ></el-table-column>
|
||||||
|
<!-- <el-table-column label="平均H指数" prop="H" align="center"></el-table-column>
|
||||||
|
<el-table-column label="国际化" prop="H" align="center"></el-table-column>
|
||||||
|
<el-table-column label="不活跃系数" prop="H" align="center"></el-table-column> -->
|
||||||
|
<!-- <el-table-column width="160" align="center">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<router-link :to="{path:'/superYoungScientistList',query:{id:scope.row.journal_id}}">
|
||||||
|
<el-button type="primary" plain >Detail</el-button></router-link>
|
||||||
|
</template>
|
||||||
|
</el-table-column> -->
|
||||||
|
</el-table>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
data(){
|
||||||
|
return{
|
||||||
|
loading:false,
|
||||||
|
query: {
|
||||||
|
username: localStorage.getItem('U_name'),
|
||||||
|
// journal: localStorage.getItem('ms_journal_alias') ? parseInt(localStorage.getItem('ms_journal_alias')) : 0,
|
||||||
|
journal: 0,
|
||||||
|
name: '',
|
||||||
|
state: 0,
|
||||||
|
pageIndex: 1,
|
||||||
|
pageSize: 10
|
||||||
|
},
|
||||||
|
tableData:[],
|
||||||
|
Total:0,
|
||||||
|
}
|
||||||
|
},
|
||||||
|
created(){
|
||||||
|
this.getdata();
|
||||||
|
},
|
||||||
|
methods:{
|
||||||
|
// 获取文章列表数据
|
||||||
|
getdata() {
|
||||||
|
this.loading = true
|
||||||
|
this.$api
|
||||||
|
.post('api/Monitor/getJournalForms')
|
||||||
|
.then(res => {
|
||||||
|
if(res.code == 0){
|
||||||
|
this.tableData = res.data.journals
|
||||||
|
}
|
||||||
|
this.loading = false
|
||||||
|
})
|
||||||
|
.catch(err => {
|
||||||
|
console.log(err);
|
||||||
|
this.loading = false
|
||||||
|
});
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
.flexbox{display: flex; justify-content: space-between;}
|
||||||
|
.lieitem span{
|
||||||
|
display: inline-block; width: 30%;
|
||||||
|
}
|
||||||
|
.lieitem em{font-style: normal; font-weight: bold; font-size: 14px; color: #409EFF; background: #ecf5ff; border-radius: 10px; padding: 4px;}
|
||||||
|
|
||||||
|
|
||||||
|
</style>
|
||||||
@@ -974,6 +974,14 @@ export default new Router({
|
|||||||
title: 'Editors & Staff'
|
title: 'Editors & Staff'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name:'super-Journals-Management',
|
||||||
|
path: '/superJournalsManagement', // 超管单期刊列表
|
||||||
|
component: () => import('../components/page/superJournalsManagement'),
|
||||||
|
meta: {
|
||||||
|
title: 'Journals Management'
|
||||||
|
}
|
||||||
|
},
|
||||||
{
|
{
|
||||||
path: '/404',
|
path: '/404',
|
||||||
component: () => import( /* webpackChunkName: "404" */
|
component: () => import( /* webpackChunkName: "404" */
|
||||||
|
|||||||
Reference in New Issue
Block a user