This commit is contained in:
@fawn-nine
2023-06-27 15:10:56 +08:00
parent a2e7328caf
commit 20c809387d
3 changed files with 2724 additions and 6 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -39,7 +39,7 @@
<el-button type="primary" icon="el-icon-search" @click="handleSearch" style="margin:0 0 10px 0;">Search
</el-button>
</div>
<div v-if="!PreAcpVisible" >
<div v-for="(item,ikgn) in tableData" class="mangu_list">
<div>
<font style="color: #666b7a;">ID : </font>
@@ -305,8 +305,39 @@
<i class="el-icon-edit"></i> Change
</b>
</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"
header-cell-class-name="table-header" empty-text="New messages (0)">
@@ -813,7 +844,11 @@
state: 4
}, {
state: 3
}, {
},
{
state: 6
},
{
state: 5
}],
Total: 0,
@@ -821,6 +856,7 @@
IndexForm: {},
editVisible: false,
guestVisible: false,
PreAcpVisible:false,
editbox: false,
repebox: false,
aiSorbox: false,
@@ -927,6 +963,10 @@
console.log(err);
});
},
// 跳入预收录编辑页面
changeEnter(val) {
this.$router.push('/PreIngestedEditor?id=' + val.article_id);
},
// 改变期刊
chageJour() {
this.$api
@@ -956,6 +996,7 @@
},
// 获取数据
getdate() {
this.query.state == 6 ? this.PreAcpVisible = true : this.PreAcpVisible = false
const loading = this.$loading({
lock: true,
text: 'Loading...',

View File

@@ -788,7 +788,7 @@ export default new Router({
}
},
{
path: '/partyListPot', //用户列表-待开发
path: '/partyListPot', //用户列表-待开发(灰库)
component: () => import('../components/page/partyListPot'),
meta: {
title: 'Potential Users'
@@ -893,12 +893,19 @@ export default new Router({
}
},
{
path: '/ReferenceEditor', //预收录-引用编辑1
path: '/ReferenceEditor', //用户端预收录-引用编辑
component: () => import('../components/page/ReferenceEditor'),
meta: {
title: 'ReferenceEditor'
}
},
{
path: '/PreIngestedEditor', // 编辑端 - 预收录编辑页面
component: () => import('../components/page/PreIngestedEditor'),
meta: {
title: 'PreIngestedEditor'
}
},
{
path: '/404',
component: () => import( /* webpackChunkName: "404" */