101 lines
2.6 KiB
Vue
101 lines
2.6 KiB
Vue
<template>
|
|
<div>
|
|
<div class="crumbs">
|
|
<el-breadcrumb separator="/">
|
|
<el-breadcrumb-item>
|
|
<i class="el-icon-collection"></i>
|
|
<router-link :to="{path:'/peerewer'}">
|
|
<span class="top_dao"> Reviewer Article</span>
|
|
</router-link>
|
|
>> Review repeat
|
|
</el-breadcrumb-item>
|
|
</el-breadcrumb>
|
|
</div>
|
|
<div class="container_l">
|
|
<el-card class="box-card suss_page">
|
|
<div class="suss_page_1">
|
|
<svg t="1649827315631" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="13161"
|
|
width="32" height="32">
|
|
<path d="M194.56 327.68l-61.44-30.72C204.8 163.84 348.16 71.68 512 71.68c174.08 0 327.68 102.4 399.36 256h81.92C911.36 143.36 727.04 0 512 0 317.44 0 153.6 112.64 61.44 266.24L0 235.52l40.96 184.32 153.6-92.16zM1024 798.72L983.04 614.4l-153.6 81.92 61.44 30.72C819.2 860.16 675.84 942.08 512 942.08c-174.08 0-327.68-102.4-399.36-256H40.96C112.64 880.64 296.96 1024 512 1024c194.56 0 358.4-102.4 450.56-266.24l61.44 40.96z"
|
|
fill="#F09648" p-id="13162"></path>
|
|
<path d="M512 296.96C317.44 296.96 215.04 512 215.04 512s102.4 215.04 296.96 215.04C696.32 727.04 808.96 512 808.96 512S696.32 296.96 512 296.96z"
|
|
fill="#F09648" p-id="13163"></path>
|
|
<path d="M512 512m-102.4 0a102.4 102.4 0 1 0 204.8 0 102.4 102.4 0 1 0-204.8 0Z" fill="#FFFFFF" p-id="13164"></path>
|
|
<path d="M512 512m-51.2 0a51.2 51.2 0 1 0 102.4 0 51.2 51.2 0 1 0-102.4 0Z" fill="#F09648" p-id="13165"></path>
|
|
</svg>
|
|
<p>Review repeat !</p>
|
|
<br clear="both">
|
|
</div>
|
|
<div class="suss_page_2">
|
|
Dear reviewer, The manuscript has been reviewed.
|
|
<br>Please check the history list go check.
|
|
</div>
|
|
<div class="suss_page_3">
|
|
<a href="/perhistory">Return to Review History</a>
|
|
</div>
|
|
</el-card>
|
|
</div>
|
|
</div>
|
|
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
created() {
|
|
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.suss_page {
|
|
padding: 25px 0;
|
|
text-align: center;
|
|
}
|
|
|
|
.suss_page .suss_page_1 {
|
|
display: inline-block;
|
|
font-size: 26px;
|
|
margin: 0 0 50px 0;
|
|
}
|
|
|
|
.suss_page .suss_page_1 svg {
|
|
float: left;
|
|
margin-top: 5px;
|
|
}
|
|
|
|
.suss_page .suss_page_1 p {
|
|
float: left;
|
|
margin: 5px 0 0 10px;
|
|
}
|
|
|
|
.suss_page .suss_page_2 {
|
|
margin: 0 0 60px 0;
|
|
text-align: center;
|
|
line-height: 30px;
|
|
}
|
|
|
|
.suss_page .suss_page_3 {
|
|
margin: 0 0 20px 0;
|
|
}
|
|
|
|
.suss_page .suss_page_3 a {
|
|
color: #fff;
|
|
background-color: #006699;
|
|
border-radius: 5px;
|
|
padding: 10px 20px;
|
|
}
|
|
|
|
.suss_page .suss_page_3 a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
</style>
|