15:08
This commit is contained in:
2670
src/components/page/PreIngestedEditor.vue
Normal file
2670
src/components/page/PreIngestedEditor.vue
Normal file
File diff suppressed because it is too large
Load Diff
@@ -39,7 +39,7 @@
|
|||||||
<el-button type="primary" icon="el-icon-search" @click="handleSearch" style="margin:0 0 10px 0;">Search
|
<el-button type="primary" icon="el-icon-search" @click="handleSearch" style="margin:0 0 10px 0;">Search
|
||||||
</el-button>
|
</el-button>
|
||||||
</div>
|
</div>
|
||||||
|
<div v-if="!PreAcpVisible" >
|
||||||
<div v-for="(item,ikgn) in tableData" class="mangu_list">
|
<div v-for="(item,ikgn) in tableData" class="mangu_list">
|
||||||
<div>
|
<div>
|
||||||
<font style="color: #666b7a;">ID : </font>
|
<font style="color: #666b7a;">ID : </font>
|
||||||
@@ -305,8 +305,39 @@
|
|||||||
<i class="el-icon-edit"></i> Change
|
<i class="el-icon-edit"></i> Change
|
||||||
</b>
|
</b>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
<!-- 预接收表 -->
|
||||||
|
<el-table v-if="PreAcpVisible" :data="tableData" border stripe class="table" ref="multipleTable"
|
||||||
|
header-cell-class-name="table-header" empty-text="New messages (0)">
|
||||||
|
<el-table-column type="index" label="No." width="55" align="center"></el-table-column>
|
||||||
|
<el-table-column width="160" label="Doi" align="center">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<p style="margin-bottom: 5px;">
|
||||||
|
{{scope.row.doi}}
|
||||||
|
</p>
|
||||||
|
<el-button size="mini" type="primary" plain icon="el-icon-tickets"
|
||||||
|
@click="showdetaileditor(scope.row)">Detail</el-button>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column prop="accept_sn" label="SN" width="180px"></el-table-column>
|
||||||
|
<el-table-column prop="" label="Title">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<p v-if="scope.row.title==''">
|
||||||
|
Article{{scope.row.p_article_id}}
|
||||||
|
</p>
|
||||||
|
<p else>
|
||||||
|
{{scope.row.title}}
|
||||||
|
</p>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column label=" " align="center" width="200px">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<el-button @click="changeEnter(scope.row)" size="mini" type="primary" plain
|
||||||
|
icon="el-icon-paperclip">Enter</el-button>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
</el-table>
|
||||||
|
|
||||||
<!-- <el-table :data="tableData" border stripe class="table" ref="multipleTable"
|
<!-- <el-table :data="tableData" border stripe class="table" ref="multipleTable"
|
||||||
header-cell-class-name="table-header" empty-text="New messages (0)">
|
header-cell-class-name="table-header" empty-text="New messages (0)">
|
||||||
@@ -813,7 +844,11 @@
|
|||||||
state: 4
|
state: 4
|
||||||
}, {
|
}, {
|
||||||
state: 3
|
state: 3
|
||||||
}, {
|
},
|
||||||
|
{
|
||||||
|
state: 6
|
||||||
|
},
|
||||||
|
{
|
||||||
state: 5
|
state: 5
|
||||||
}],
|
}],
|
||||||
Total: 0,
|
Total: 0,
|
||||||
@@ -821,6 +856,7 @@
|
|||||||
IndexForm: {},
|
IndexForm: {},
|
||||||
editVisible: false,
|
editVisible: false,
|
||||||
guestVisible: false,
|
guestVisible: false,
|
||||||
|
PreAcpVisible:false,
|
||||||
editbox: false,
|
editbox: false,
|
||||||
repebox: false,
|
repebox: false,
|
||||||
aiSorbox: false,
|
aiSorbox: false,
|
||||||
@@ -927,6 +963,10 @@
|
|||||||
console.log(err);
|
console.log(err);
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
// 跳入预收录编辑页面
|
||||||
|
changeEnter(val) {
|
||||||
|
this.$router.push('/PreIngestedEditor?id=' + val.article_id);
|
||||||
|
},
|
||||||
// 改变期刊
|
// 改变期刊
|
||||||
chageJour() {
|
chageJour() {
|
||||||
this.$api
|
this.$api
|
||||||
@@ -956,6 +996,7 @@
|
|||||||
},
|
},
|
||||||
// 获取数据
|
// 获取数据
|
||||||
getdate() {
|
getdate() {
|
||||||
|
this.query.state == 6 ? this.PreAcpVisible = true : this.PreAcpVisible = false
|
||||||
const loading = this.$loading({
|
const loading = this.$loading({
|
||||||
lock: true,
|
lock: true,
|
||||||
text: 'Loading...',
|
text: 'Loading...',
|
||||||
|
|||||||
@@ -788,7 +788,7 @@ export default new Router({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: '/partyListPot', //用户列表-待开发
|
path: '/partyListPot', //用户列表-待开发(灰库)
|
||||||
component: () => import('../components/page/partyListPot'),
|
component: () => import('../components/page/partyListPot'),
|
||||||
meta: {
|
meta: {
|
||||||
title: 'Potential Users'
|
title: 'Potential Users'
|
||||||
@@ -893,12 +893,19 @@ export default new Router({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: '/ReferenceEditor', //预收录-引用编辑1
|
path: '/ReferenceEditor', //用户端预收录-引用编辑
|
||||||
component: () => import('../components/page/ReferenceEditor'),
|
component: () => import('../components/page/ReferenceEditor'),
|
||||||
meta: {
|
meta: {
|
||||||
title: 'ReferenceEditor'
|
title: 'ReferenceEditor'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
path: '/PreIngestedEditor', // 编辑端 - 预收录编辑页面
|
||||||
|
component: () => import('../components/page/PreIngestedEditor'),
|
||||||
|
meta: {
|
||||||
|
title: 'PreIngestedEditor'
|
||||||
|
}
|
||||||
|
},
|
||||||
{
|
{
|
||||||
path: '/404',
|
path: '/404',
|
||||||
component: () => import( /* webpackChunkName: "404" */
|
component: () => import( /* webpackChunkName: "404" */
|
||||||
|
|||||||
Reference in New Issue
Block a user