94 lines
2.2 KiB
Vue
94 lines
2.2 KiB
Vue
<template>
|
||
<div>
|
||
<div class="crumbs">
|
||
<el-breadcrumb separator="/">
|
||
<el-breadcrumb-item>
|
||
<i class="el-icon-copy-document"></i> <span class="top_dao"> Pending review</span>
|
||
</el-breadcrumb-item>
|
||
</el-breadcrumb>
|
||
</div>
|
||
<div class="container_l">
|
||
<el-row :gutter="20">
|
||
<el-col :span="24">
|
||
<el-card class="box-card">
|
||
<div class="ma_title">
|
||
<h2>Awaiting reviewer assignment</h2>
|
||
</div>
|
||
<!-- <div>
|
||
<img src="../../assets/img/icon_tmr.png" alt="" style="width: 180px;float: left;">
|
||
<img src="../../assets/img/img.jpg" alt="" style="width: 120px;height: 160px;float: right;">
|
||
<br clear="both">
|
||
</div>
|
||
<div>
|
||
<p style="text-align: center;font-size: 35px;margin-top: -50px;font-weight: bold;padding-left: 120px;">123456</p>
|
||
<p style="text-align: center;font-size: 60px;margin: 50px 0 20px 0;color: #006699;">Certificate of Reviewing</p>
|
||
<p style="text-align: center;font-size: 25px;">123456789</p>
|
||
<p style="text-align: center;font-size: 35px;font-weight: bold;margin: 20px 0 30px 0;">123456789</p>
|
||
<p style="text-align: center;font-size: 25px;">123456789</p>
|
||
</div>
|
||
<div class="dotted">
|
||
<p style="font-weight: bold;font-size: 20px;">123</p>
|
||
<p style="margin: 5px 0 0 0;font-size: 18px;">Cockle Bay Rd, Auckland, New Zealand, 2014</p>
|
||
</div>
|
||
<img src="../../assets/img/huizhang.png" alt="" style="width: 180px;position: absolute;right: -15px;bottom: 5px;"> -->
|
||
</el-card>
|
||
</el-col>
|
||
</el-row>
|
||
</div>
|
||
</div>
|
||
</template>
|
||
|
||
<script>
|
||
export default {
|
||
data() {
|
||
return {
|
||
|
||
};
|
||
},
|
||
mounted() {
|
||
|
||
},
|
||
created() {
|
||
this.getData();
|
||
},
|
||
methods: {
|
||
// 获取数据
|
||
getData() {
|
||
|
||
},
|
||
|
||
},
|
||
computed: {
|
||
|
||
},
|
||
watch: {
|
||
|
||
}
|
||
};
|
||
</script>
|
||
|
||
<style scoped>
|
||
.dotted {
|
||
position: relative;
|
||
background: #edeef0;
|
||
width: 1000px;
|
||
height: 100px;
|
||
margin-top: 100px;
|
||
margin-left: -40px;
|
||
margin-right: -40px;
|
||
margin-bottom: -40px;
|
||
padding: 50px 0 0 60px;
|
||
}
|
||
|
||
.dotted:before {
|
||
content: ' ';
|
||
width: 100%;
|
||
height: 6px;
|
||
position: absolute;
|
||
/* 小球形状 */
|
||
border-top: 10px dotted white;
|
||
left: 0;
|
||
top: -5px;
|
||
}
|
||
</style>
|