Files
tougao_web/src/components/page/you_thed.vue
wangjinlei f087543b0f 20230517
2023-05-17 13:21:01 +08:00

94 lines
2.2 KiB
Vue
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<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>Awaitingreviewerassignment</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>