This commit is contained in:
@fawn-nine
2023-06-09 17:38:46 +08:00
parent 55327d3b77
commit bb544d5684

View File

@@ -1,7 +1,7 @@
<template>
<div>
<div class="container">
<el-table :data="tableData" border stripe class="table" ref="multipleTable"
<el-table :data="tableData" border stripe class="table" ref="multipleTable" v-loading="loading"
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="180" label="Manuscript ID" align="center">
@@ -25,10 +25,16 @@
</p>
</template>
</el-table-column>
<el-table-column label="scoring" align="center" prop="scoring">
<el-table-column label="scoring" align="center" prop="scoring" width="90">
</el-table-column>
<el-table-column label="author" align="center" width="300">
<el-table-column label="author" align="center" width="300">
<template slot-scope="scope">
<b>{{scope.row.user.realname}}</b><br/>
{{scope.row.user.email}}
</template>
</el-table-column>
<el-table-column label="Remarks" align="center">
<template slot-scope="scope">
@@ -88,7 +94,8 @@
content: ''
},
journal_type:[],
ss:''
ss:'',
loading:false
};
},
components: {
@@ -108,10 +115,12 @@
// 获取数据
getData() {
// 被拒稿件列表
this.loading = true
this.$api
.post('api/Article/getRejectArticles', this.query)
.then(res => {
if (res.data.count > 0) {
this.loading = false
this.tableData = res.data.articles
this.Total = res.data.count
}